| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <log/log.h> | |
| #include "lynq_timer.h" | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif | |
| #undef LOG_TAG | |
| #define LOG_TAG "LYNQ_SDK_READY" | |
| int main(void){ | |
| RLOGD("lynq-sdk-ready begin"); | |
| start_timer_request(); | |
| while (1) | |
| { | |
| sleep(UINT32_MAX); | |
| } | |
| return 0; | |
| } | |
| #ifdef __cplusplus | |
| } | |
| #endif |