diff options
| author | hathach <[email protected]> | 2014-03-09 16:55:13 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2014-03-09 16:55:13 +0700 |
| commit | 33442a74b4b513d640ada48ab028df3cc36367e2 (patch) | |
| tree | 263f3f50224781b7cb1f2b90a9019634557fec8a | |
| parent | 73ac4b4c8069744f09a20bec1e892d1eed8fd4c3 (diff) | |
fix board_rf1ghznode.c build error
| -rw-r--r-- | demos/bsp/boards/microbuilder/board_rf1ghznode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/bsp/boards/microbuilder/board_rf1ghznode.c b/demos/bsp/boards/microbuilder/board_rf1ghznode.c index e8e8051c5..fca3fcc75 100644 --- a/demos/bsp/boards/microbuilder/board_rf1ghznode.c +++ b/demos/bsp/boards/microbuilder/board_rf1ghznode.c @@ -48,7 +48,7 @@ const static struct { uint8_t port; uint8_t pin; -} buttons[BOARD_BUTTON_COUNT] = { { 0, 1 } }; +} buttons[] = { { 0, 1 } }; enum { BOARD_BUTTON_COUNT = sizeof(buttons) / sizeof(buttons[0]) |
