Loading...
Searching...
No Matches
flashwrite.h
1#ifndef _FLASHBUFFER_H
2#define _FLASHBUFFER_H
3
4#include "FreeRTOS.h"
5#include "event_groups.h"
6#include "stdbool.h"
7
8#include "devicelist.h"
9#include "devices.h"
10#include "w25q128.h"
11#include "membuff.h"
12#include "stateupdate.h"
13
14typedef struct {
15 enum State *currentState;
16 MemBuff *mem;
17} ctxIdle;
18
19typedef struct {
20 enum State *currentState;
21 MemBuff *mem;
23
24void vIdle(void *pvParameters);
25void vFlashBuffer(void *pvParameters);
26
27#endif