aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 46037bd8ceb868c29f266533bccb12bf75a6ba64 (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
#include "wiring.h"
#include "HardwareSerial.h"
#include "math.h"
#include "usb.h"

void setup();
void loop();

int ledPin = 13;


void setup()
{
    pinMode(ledPin, OUTPUT);
    Serial2.begin(9600);
    Serial2.println("setup start");

    pinMode(6, PWM);
    pwmWrite(6, 0x8000);

    Serial2.println("setup end");
}

int toggle = 0;

char* testMsg = "0123456\n";
void loop() {
    toggle ^= 1;
    digitalWrite(ledPin, toggle);
    delay(1000);

    usb_userToPMABufferCopy((u8*)testMsg,USB_SERIAL_ENDP_TXADDR,8);
    _SetEPTxCount(USB_SERIAL_ENDP_TX,8);
    _SetEPTxValid(USB_SERIAL_ENDP_TX);
}


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)
        ;
}