fantemp/thermistor/main.cpp

22 lines
279 B
C++
Raw Normal View History

2020-03-29 01:46:11 +01:00
#include "clock.hpp"
#include <stdint.h>
#include "flash/flash.hpp"
#include "uart/uart.hpp"
#define UART0_INT_VECTORS
#include "uart/hardware0.hpp"
2020-03-29 01:29:59 +01:00
int main()
{
2020-03-29 01:46:11 +01:00
uart::Uart0<> serial;
serial.init();
serial << F("Thermistor reader\r\n");
serial.flushTx();
2020-03-29 01:29:59 +01:00
return 0;
}