inverse_thermal_camera/src/main.c

31 lines
673 B
C
Raw Normal View History

2018-07-29 18:24:52 +02:00
#include "main.h"
int main(void)
{
LTP1245_Init();
2018-08-04 11:30:00 +02:00
// LTP1245_FeedPaper(10);
2018-08-04 17:00:41 +02:00
RCC->APB2ENR |= RCC_APB2ENR_IOPCEN;
GPIOC->CRH = (GPIOC->CRH
& ~(0x0f << (4 * PIN_LED - 32)))
| (0x01 << (4 * PIN_LED - 32)) // Output, max. 10 MHz
;
2018-08-04 15:20:55 +02:00
char buff[30];
itoa(BUILD_NUMBER, buff, 10);
Print_Text(buff, &Messe_Duesseldorf_39);
2018-08-04 11:30:00 +02:00
// LTP1245_FeedPaper(10);
// Print_Text("Testy McTestFace", &Arpegius_32);
// Print_Text("123555bcD", &Messe_Duesseldorf_39);
2018-08-04 16:11:18 +02:00
Print_Text("This is a long line with very much text!", &Hannover_Messe_Serif_26);
LTP1245_FeedPaper(10);
LTP1245_Cut();
2018-07-29 18:24:52 +02:00
for(;;)
{
}
}