PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
Arduino.cpp
Go to the documentation of this file.
1 
9 #include <Arduino.h>
10 
11 __attribute__ ((weak)) void setup(void)
12 {
13 }
14 
15 __attribute__ ((weak)) void loop(void)
16 {
17 }
18 
19 int main(void)
20 {
21  setup();
22 
23  for (;;) {
24  loop();
25  }
26 
27  return 0;
28 }
Arduino.h
Provides Arduino types and functions on the Propeller.
main
int main(void)
Definition: GraphicsTest.c:20