blob: 8c90b7d36251c1dfc3633721160a2f1e9d810b85 (
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
|
#include "wiring.h"
#include "HardwareSerial.h"
#include "math.h"
#include "usb.h"
int ledPin = 13;
uint8_t bytes_in;
BootVectTable* mapleVect;
void usb_tx_cb(void) {
}
void usb_rx_cb(void) {
bytes_in = usb_serialGetRecvLen();
}
void setup()
{
pinMode(ledPin, OUTPUT);
Serial2.begin(9600);
Serial2.println("setup start");
pinMode(6, PWM);
pwmWrite(6, 0x8000);
pinMode(7, OUTPUT);
Serial2.println("setup end");
mapleVect = (BootVectTable*)(BOOTLOADER_VECT_TABLE);
mapleVect->serial_tx_cb = usb_tx_cb;
mapleVect->serial_rx_cb = usb_rx_cb;
}
int toggle = 0;
const char* testMsg = "hello world!\n";
static inline void loop() {
toggle ^= 1;
digitalWrite(ledPin, toggle);
delay(1000);
usb_serialWriteStr("blink...\n");
if (bytes_in > 0) {
int i;
for (i=0;i<bytes_in;i++) {
usb_serialWriteStr("b,");
}
bytes_in = 0;
usb_serialWriteStr("\n");
}
}
int main(void) {
init();
setup();
while (1) {
loop();
}
return 0;
}
/* Required for C++ hackery */
/* TODO: This really shouldn't go here... move it later
* */
extern "C" void __cxa_pure_virtual(void) {
while(1)
;
}
|