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 "devices.h"
9#include "flash.h"
10#include "membuff.h"
11#include "stateupdate.h"
12
13typedef struct {
14 enum State *currentState;
15 MemBuff *mem;
16} ctxIdle;
17
18typedef struct {
19 enum State *currentState;
20 MemBuff *mem;
22
23void vIdle(void *pvParameters);
24void vFlashBuffer(void *pvParameters);
25
26#endif