From 7021adc50a041bfb69bc4432b712aa07ef710ca3 Mon Sep 17 00:00:00 2001 From: "ajmeyer@mit.edu" Date: Sat, 19 Dec 2009 08:03:54 +0000 Subject: added USB support (TX over virtual com port), the linker modifications to work with the bootloader, a modified libcs-lanchon-stm32.a, and the arduino-required main.cxx and WProgram.h git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@72 749a229e-a60e-11de-b98f-4500b42dc123 --- src/main.cxx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/main.cxx (limited to 'src/main.cxx') diff --git a/src/main.cxx b/src/main.cxx new file mode 100644 index 0000000..7734d6e --- /dev/null +++ b/src/main.cxx @@ -0,0 +1,21 @@ +int main(void) +{ + init(); + setup(); + + while (1) { + loop(); + } + return 0; +} + + +/* Implemented: + * void pinMode(pin, mode) + * void digitalWrite(pin, value) + * uint32_t digitalRead(pin) + * uint32_t analogRead(pin) + * void randomSeed(seed) + * long random(max) + * long random(min, max) + * */ -- cgit v1.2.3