lots of compiler complaining over these...

This commit is contained in:
Morgan 'ARR\!' Allen 2021-09-23 22:58:35 -07:00
parent 41da70278f
commit afd99d2586
1 changed files with 3 additions and 1 deletions

View File

@ -1,11 +1,13 @@
#ifndef __MAIN_H_ #ifndef __MAIN_H_
#define __MAIN_H_ #define __MAIN_H_
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "nvs_flash.h" #include "nvs_flash.h"
#define PUMP_COUNT (4) #define PUMP_COUNT (4)
static xQueueHandle gpio_evt_queue = NULL; static QueueHandle_t gpio_evt_queue = NULL;
nvs_handle_t config_handle; nvs_handle_t config_handle;
extern uint8_t mac[6]; extern uint8_t mac[6];