summaryrefslogtreecommitdiffstats
path: root/boiler-monster/stm32/app/ticker.c
blob: 9e268ca1e99e56b95e7a586c66ff81886affbd04 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include "project.h"


static volatile uint32_t delay_hms_count;
static volatile uint32_t ticks;
static uint32_t scale = 7;

void
delay_us (uint32_t d)
{
  d *= scale;

  while (d--)
    __asm__ ("nop");
}


void
sys_tick_handler (void)
{
  if (delay_hms_count)
    delay_hms_count--;


  led_tick();
  ot_phy_tx_tick();
  ot_tick();
  onewire_tick();
  temp_tick();
  adc_tick();
  pressure_tick();


  ticks++;
}



void
delay_ms (uint32_t d)
{
  delay_hms_count = d << 1;

  while (delay_hms_count);
}

#if 0
int
timed_out (uint32_t then, unsigned int ms)
{
  then = ticks - then;

  if (then > ms)
    return 1;

  return 0;
}

int
timed_out_cycles (uint32_t then, unsigned int cycles)
{
  then = dwt_read_cycle_counter() - then;

  if (then > cycles)
    return 1;

  return 0;
}
#endif



void
ticker_init (void)
{
  uint32_t v, w;

  /*Start periodic timer */

  systick_set_clocksource (STK_CSR_CLKSOURCE_AHB_DIV8);
  /* 72MHz / 8 = > 9Mhz */
  systick_set_reload (4500);
  /* 9MHz / 4500 => 2kHz */
  systick_interrupt_enable();
  systick_counter_enable();

  /*Calibrate the delay loop */



  do {
    scale--;
    v = ticks;

    while (v == ticks);

    delay_us (500);
    w = ticks;
    v++;
    w -= v;
  } while (w);



}