22 lines
279 B
C++
22 lines
279 B
C++
#include "clock.hpp"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "flash/flash.hpp"
|
|
#include "uart/uart.hpp"
|
|
|
|
#define UART0_INT_VECTORS
|
|
#include "uart/hardware0.hpp"
|
|
|
|
int main()
|
|
{
|
|
uart::Uart0<> serial;
|
|
serial.init();
|
|
|
|
serial << F("Thermistor reader\r\n");
|
|
|
|
serial.flushTx();
|
|
|
|
return 0;
|
|
}
|