Checkpoint

This commit is contained in:
Attila Body 2019-11-19 12:47:07 +01:00
parent 83f510bb59
commit 491062cac6
13 changed files with 95 additions and 221 deletions

View file

@ -21,10 +21,10 @@
#endif
struct crcslottask_t {
void *address;
void * volatile address;
uint16_t wordCount;
void (*callback)(void*, uint32_t, uint8_t);
void *callbackParam;
void (* volatile callback)(void*, uint32_t, uint8_t);
void * volatile callbackParam;
};
struct crcslotlistitem_t {
@ -35,8 +35,8 @@ struct crcslotlistitem_t {
struct crcstatus_t {
DMAINFO dmaInfo;
volatile struct crcslotlistitem_t *activeSlot;
volatile uint8_t activeTask;
struct crcslotlistitem_t * volatile activeSlot;
uint8_t volatile activeTask;
struct crcslotlistitem_t *first;
};