Store the configuration on the SD card

This commit is contained in:
2015-08-13 14:10:09 +00:00
parent 53a8072424
commit d0f9f46f9c
16 changed files with 271 additions and 26 deletions

11
crc.h Normal file
View File

@@ -0,0 +1,11 @@
/* crc.h */
#ifndef __CRC_H
#define __CRC_H
#include "types.h"
extern bool check_crc(char *buffer, int len);
#endif /* __CRC_H */