#include <stdint.h>
#include "system/lpc214x.h"
#include "system/target.h"
#include "system/irq.h"
#include "time/timer.h"
#include "time/rtc.h"
#include "uart/uart.h"
#include "accelerometer/accelerometer.h"
#include "bluetooth/bluetooth.h"
#include "filesystem/fatfs/ff.h"
#include "filesystem/fatfs/diskio.h"
#include "newlib/device.h"
#include "thermometer/thermometer.h"
#include "usb/usb_mass_storage.h"
Go to the source code of this file.
Defines | |
#define | bool_t_defined 1 |
#define | MIN(x, y) ((x)<(y)?(x):(y)) |
#define | MAX(x, y) ((x)>(y)?(x):(y)) |
#define | sizeof_array(x) ((sizeof(x))/(sizeof(x[0]))) |
Enumerations | |
enum | bool_t { false = 0, true } |
Only use types from stdint.h if possible! |
Main include file for Sceptre.
Defines some useful macros and includes useful files. Use together with the library "sceptre.a"
The objective is that only this file has to be included to use the Sceptre library. The easy way to accomplish this is to include everything in this file...
Definition in file sceptre.h.