From 39687aa7c7b138d2a1ce2551f2400bade3b1a6fb Mon Sep 17 00:00:00 2001 From: James McKenzie Date: Sun, 2 Aug 2015 23:30:06 +0100 Subject: fis --- app/main.c | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app/main.c (limited to 'app/main.c') diff --git a/app/main.c b/app/main.c new file mode 100644 index 0000000..053aa75 --- /dev/null +++ b/app/main.c @@ -0,0 +1,39 @@ +#include "project.h" +extern uint32_t dfu_flag; + +int +main (void) +{ + /*set up pll */ + //rcc_clock_setup_in_hse_8mhz_out_24mhz (); + rcc_clock_setup_in_hse_8mhz_out_72mhz (); + //rcc_clock_setup_in_hsi_out_48mhz(); + + /*turn on clocks to periferals */ + rcc_periph_clock_enable (RCC_GPIOA); + rcc_periph_clock_enable (RCC_GPIOB); + rcc_periph_clock_enable (RCC_GPIOC); + rcc_periph_clock_enable (RCC_AFIO); + + ticker_init (); + led_init (); + i2c_bb_init (); + lcd_init (); + + lcd_backlight (1); + { + char buf[16]; + sprintf(buf,"%x",dfu_flag); + lcd_write(buf,0,1); +} + + + lcd_write ("hello world", 0, 0); + + usb_init (); + + + usb_run (); + + return 0; +} -- cgit v1.2.3