I want to create interrupt of 100ms using internal RTC of PSoC 5lp. I am using this RTC interrupt as time out interrupt for receiving command from UART communication. I want PSoC to be in active state when RTC interrupt is received.
Asked
Active
Viewed 236 times
0
-
Have you tried looking in the datasheet? I find that the answer is almost always there to find. – Fredrik Aug 12 '20 at 11:40
-
Any specific reason why you need to use the RTC rather than using a Timer component? I'm not sure you can use the RTC for an interrupt with that short a period. There are built in ISR stubs that can be fired every second, minute, hour, day, week, month, and year. They can be enabled with the RTC_WriteIntervalMask() function (see pg24 in the RTC component datasheet) – K_Trenholm Sep 18 '20 at 19:47