goodwatch/firmware/api.h

45 lines
940 B
C
Raw Normal View History

/*! \file api.h
\brief Main API header, that includes the others.
This should be the only header file included by applications. It
should allow for general I/O functions, but nothing internal to a
driver. (But of course it includes too much for now.)
*/
#include <stdint.h>
#include <msp430.h>
#include "config.h"
#include "configdefault.h"
//GoodWatch modules.
#include "lcd.h"
#include "bcd.h"
#include "adc.h"
#include "ref.h"
#include "uart.h"
2017-12-09 12:34:21 +00:00
#include "monitor.h"
#include "ucs.h"
#include "lcdtext.h"
#include "keypad.h"
#include "apps.h"
2017-09-26 16:59:02 +00:00
#include "rtc.h"
#include "sidebutton.h"
#include "radio.h"
#include "packet.h"
2017-11-30 20:48:22 +00:00
#include "codeplug.h"
#include "power.h"
2017-12-09 00:51:01 +00:00
#include "dmesg.h"
#include "buzz.h"
#include "descriptor.h"
2018-05-17 14:36:35 +00:00
#include "githash.h" //Autogenerated
//Handy libraries. These are tested host-side.
#include "libs/assembler.h"
#include "libs/morse.h"
//Standalone functions.
//! Power On Self Test
int post();