config.h 367 B

12345678910111213141516171819202122
  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3. #include <pthread.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <stdint.h>
  7. #include <string.h>
  8. #include "FreeRTOS.h"
  9. #include "queue.h"
  10. #include "task.h"
  11. #include "fscbt_interface.h"
  12. #define TEST_STACK_SIZE 500000
  13. extern QueueHandle_t tx_queue;
  14. extern QueueHandle_t rx_queue;
  15. extern int initialize_timeout;
  16. #endif