summaryrefslogtreecommitdiffstats
path: root/app/tims_keyboard.c
blob: e6a4aae8dbaf7315ae57e8a8cd887c8f8879af57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "project.h"
extern uint32_t dfu_flag;

int
main (void)
{


//  rcc_clock_setup_in_hsi_out_48mhz ();
  //nvic_set_priority_grouping(NVIC_PriorityGroup_4);

  /*set up pll*/
  rcc_clock_setup_in_hse_8mhz_out_72mhz();

  /*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);
  rcc_periph_clock_enable (RCC_USART1);
  rcc_periph_clock_enable (RCC_USART1);
  dwt_enable_cycle_counter();

  /*Change interrupt priorities so that USART trumps everything else */
  nvic_set_priority(NVIC_USART1_IRQ, 0x40);
  nvic_set_priority(NVIC_EXTI0_IRQ, 0xff);
  nvic_set_priority(NVIC_SYSTICK_IRQ, 0xff);

  usart_init();

  ticker_init();


  printf("Hello world!\r\n");

  atkbd_init();

  usb_init ();


  usb_run ();

  return 0;
}