Updated

Dependents:   PROJECTTEST

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Watchdog.h Source File

Watchdog.h

00001 #ifndef __WATCHDOG__
00002 #define __WATCHDOG__
00003 
00004 #include "main.h"
00005 #include "sample_hardware.hpp"
00006 
00007 #define WATCHDOG_TIME 10000
00008 
00009 #define PRODUCER 1<<0
00010 #define CONSUMER 1<<1
00011 #define SERIAL 1<<2
00012 #define SD 1<<3
00013 #define LCD 1<<4
00014 #define NETWORK 1<<5
00015 
00016 extern void watchdog(void);
00017 
00018 #endif