2012-11-05 15:55:08 -07:00
|
|
|
/* main.h */
|
|
|
|
|
|
|
|
|
|
#ifndef __main_h_
|
|
|
|
|
#define __main_h_
|
|
|
|
|
|
|
|
|
|
#include <mqx.h>
|
|
|
|
|
#include <bsp.h>
|
|
|
|
|
#include <fio.h>
|
2014-09-17 16:50:45 -06:00
|
|
|
#include <mfs.h>
|
2012-11-05 15:55:08 -07:00
|
|
|
#include <sdcard.h>
|
|
|
|
|
#include <spi.h>
|
|
|
|
|
#include <part_mgr.h>
|
|
|
|
|
|
2014-09-17 16:50:45 -06:00
|
|
|
#define MAIN_TASK 1
|
2012-11-05 15:55:08 -07:00
|
|
|
|
2014-09-17 16:50:45 -06:00
|
|
|
extern void Main_task (uint32_t);
|
2015-03-18 18:18:09 -06:00
|
|
|
void wolfcrypt_test(void* args);
|
2012-11-05 15:55:08 -07:00
|
|
|
|
|
|
|
|
#endif /* __main_h_ */
|
|
|
|
|
|