aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/util.cpp
blob: 4eb4fe07796c8bdf4210c96fac450fc0a35e03b7 (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
#include "wiring.h"
#include "Serial.h"
#include "util.h"
#include "io.h"

#define ERROR_PIN        13

/* Required for C++ hackery */
extern "C" void __cxa_pure_virtual(void) {
    while(1)
        ;
}

/* Error assert + fade */
void _fail(const char* file, int line, const char* exp) {
    int32_t  slope   = 1;
    int32_t CC      = 0x0000;
    int32_t TOP_CNT = 0x02FF;
    int32_t i       = 0;

    Serial1.print("ERROR: FAILED ASSERT(");
    Serial1.print(exp);
    Serial1.print("): ");
    Serial1.print(file);
    Serial1.print(":");
    Serial1.println(line);

    while (1) {
        if (CC == TOP_CNT)  {
            slope = -1;
        } else if (CC == 0) {
            slope = 1;
        }

        if (i == TOP_CNT)  {
            CC += slope;
            i = 0;
        }

        if (i < CC) {
            digitalWrite(ERROR_PIN, HIGH);
        } else {
            digitalWrite(ERROR_PIN, LOW);
        }
        i++;
    }
}