diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-03-04 20:25:26 -0500 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-03-08 13:43:41 -0500 |
commit | 8863418f0595c8dfd7d01081be941541539827bb (patch) | |
tree | 94b86a04e6808df1390e88d809dd54c9aa8edccb /examples/spi_master.cpp | |
parent | 8241a4c640d036faa148350219ad3deea72a23c2 (diff) | |
download | librambutan-8863418f0595c8dfd7d01081be941541539827bb.tar.gz librambutan-8863418f0595c8dfd7d01081be941541539827bb.zip |
Brought examples/ up to date; PIN_MAP bugfix for D24.
(Cherry-pick from refactor with some modifications).
Diffstat (limited to 'examples/spi_master.cpp')
-rw-r--r-- | examples/spi_master.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/spi_master.cpp b/examples/spi_master.cpp index 9f6d81b..06cad02 100644 --- a/examples/spi_master.cpp +++ b/examples/spi_master.cpp @@ -60,13 +60,12 @@ void loop() { }
// Force init to be called *first*, i.e. before static object allocation.
-// Otherwise, statically allocated object that need libmaple may fail.
- __attribute__(( constructor )) void premain() {
+// Otherwise, statically allocated objects that need libmaple may fail.
+__attribute__((constructor)) void premain() {
init();
}
-int main(void)
-{
+int main(void) {
setup();
while (1) {
|