Hello
frustrated, I need help in Programming . I have psoc 4200 device. when I burn below code. I see the current time and date on LCD
PSoC 4 Real-Time Clock
frustrated, I need help in Programming . I have psoc 4200 device. when I burn below code. I see the current time and date on LCD
Code (Text):
- */
- #include <project.h>
- #include <stdio.h>
- /* Time: 02:59:50 */
- #define TIME_HOUR (0x23u)
- #define TIME_MIN (0x59u)
- #define TIME_SEC (0x55u)
- #define TIME_HR_MIN_SEC ((uint32)(TIME_HOUR << RTC_HOURS_OFFSET) | \
- (uint32)(TIME_MIN << RTC_MINUTES_OFFSET) | \...