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
106
107
|
#include "core/isr_vector.h"
#include "core/gpio.h"
#include "arch.h"
#include "delay.h"
#ifdef ARCH_STM32L4
#define IRQ_RESERVED(n)
#define IRQ(name, n) \
void WEAK name () { \
unhandled_isr(n); \
}
#include "core/isrs.i"
#undef IRQ_RESERVED
#undef IRQ
void isr_simple_pin_on()
{
__IO gpio_port_t* port_b = enable_gpio(GPIO_PORT_B);
gpio_output_pin_t pin3 = set_gpio_pin_output(port_b, PIN_3);
pin_on(pin3);
}
#define DEFINE_UNHANDLED_ISR(n) \
int unhandled_isr_##n() \
{ \
unhandled_isr(n); \
}
/* Flashes wildly. */
void super_flash()
{
static int pin_on = 0;
__IO gpio_port_t* port_b = enable_gpio(GPIO_PORT_B);
gpio_output_pin_t pin3 = set_gpio_pin_output(port_b, PIN_3);
if (pin_on) {
pin_off(pin3);
} else {
pin_on(pin3);
}
pin_on = !pin_on;
}
#define IRQ_RESERVED(n) 0,
#define IRQ(name, n) name,
const void* vectors[] __attribute__((section(".vectors"))) = {
(void*)0x2000c000, /* Top of stack at top of sram1. 48k */
#include "core/isrs.i"
};
#undef IRQ_RESERVED
#undef IRQ
/* Encodes the provided number as a series of flashes on the on-board
* LED. The flashes follow as such:
*
* Before the bits of the code are flashed, a rapid succession of 20 flashes
* followed by a pause will occur indicating that the next 8 flashes indicate
* the bits of the provided code.
*
* The next eight flashes are indicate either a 1 or 0 depending on the length
* of the light being on. The first flash is the least-significant bit, the next
* the second least, the third third least, etc.
*
* - A quick flash followed by a long pause indicates a 0 bit.
* - A "long" flash followed by a equally long pause indicates a 1 bit.
*/
void unhandled_isr(uint8_t number)
{
__IO gpio_port_t* port_b = enable_gpio(GPIO_PORT_B);
gpio_output_pin_t pin3 = set_gpio_pin_output(port_b, PIN_3);
for (;;) {
for (int i = 0; i < 20; ++ i) {
pin_on(pin3);
delay(1000000);
pin_off(pin3);
delay(1000000);
}
delay(50000000);
int n = number;
for (int i = 0; i < 8; ++ i) {
if (n & 1) {
// LSB is a 1
pin_on(pin3);
delay(15000000);
pin_off(pin3);
delay(15000000);
} else {
// LSB is a 0
pin_on(pin3);
delay(1000000);
pin_off(pin3);
delay(29000000);
}
n >>= 1;
}
}
}
#endif
|