luat_network_air101.c 820 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include "luat_base.h"
  2. #include "luat_rtos.h"
  3. #include "c_common.h"
  4. #include "luat_malloc.h"
  5. #include "FreeRTOS.h"
  6. #include "semphr.h"
  7. #include "task.h"
  8. void DBG_Printf(const char* format, ...) {
  9. }
  10. void DBG_HexPrintf(void *Data, unsigned int len) {
  11. }
  12. LUAT_RET luat_send_event_to_task(void *task_handle, uint32_t id, uint32_t param1, uint32_t param2, uint32_t param3) {
  13. return LUAT_ERR_OK;
  14. }
  15. LUAT_RET luat_wait_event_from_task(void *task_handle, uint32_t wait_event_id, void *out_event, void *call_back, uint32_t ms) {
  16. return LUAT_ERR_OK;
  17. }
  18. void luat_stop_rtos_timer(void *timer) {
  19. }
  20. void luat_release_rtos_timer(void *timer) {
  21. }
  22. void *luat_create_rtos_timer(void *cb, void *param, void *task_handle) {
  23. }
  24. int luat_start_rtos_timer(void *timer, uint32_t ms, uint8_t is_repeat) {
  25. return 0;
  26. }