From 605b5755bf6e79107dab5037de4159e4c14b21b1 Mon Sep 17 00:00:00 2001 From: Matthew Lewis Date: Tue, 22 Sep 2015 14:54:32 -0500 Subject: [PATCH 1/4] config: add LightBlue Bean board definition and docs --- docs/frameworks/arduino.rst | 20 ++++++++++++++++++++ docs/platforms/atmelavr.rst | 20 ++++++++++++++++++++ platformio/boards/punchthrough.json | 22 ++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 platformio/boards/punchthrough.json diff --git a/docs/frameworks/arduino.rst b/docs/frameworks/arduino.rst index ba909a08..df2ab830 100644 --- a/docs/frameworks/arduino.rst +++ b/docs/frameworks/arduino.rst @@ -630,6 +630,26 @@ PanStamp - 32 Kb - 4 Kb +Punch Through +~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``lightblue-bean`` + - `LightBlue Bean `_ + - ATMEGA32U4 + - 8 MHz + - 32 Kb + - 2 Kb + Quirkbot ~~~~~~~~ diff --git a/docs/platforms/atmelavr.rst b/docs/platforms/atmelavr.rst index 7a536133..e54f28f5 100644 --- a/docs/platforms/atmelavr.rst +++ b/docs/platforms/atmelavr.rst @@ -601,6 +601,26 @@ PanStamp - 32 Kb - 2 Kb +Punch Through +~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``lightblue-bean`` + - `LightBlue Bean `_ + - ATMEGA32U4 + - 8 MHz + - 32 Kb + - 2 Kb + Quirkbot ~~~~~~~~ diff --git a/platformio/boards/punchthrough.json b/platformio/boards/punchthrough.json new file mode 100644 index 00000000..bf6fc85f --- /dev/null +++ b/platformio/boards/punchthrough.json @@ -0,0 +1,22 @@ +{ + "lightblue-bean": { + "name": "LightBlue Bean", + "vendor": "Punch Through Design", + "url": "https://punchthrough.com/bean", + + "platform": "atmelavr", + "frameworks": ["arduino"], + + "build": { + "core": "bean", + "variant": "bean", + "extra_flags": "-DARDUINO_ARCH_AVR", + "mcu": "atmega328p", + "f_cpu": "8000000L" + }, + "upload": { + "maximum_size": 32256, + "maximum_ram_size": 2048 + } + } +} From c997495b5d7ab1889ca40f048f3e8e058bdb9821 Mon Sep 17 00:00:00 2001 From: Matthew Lewis Date: Tue, 22 Sep 2015 15:04:06 -0500 Subject: [PATCH 2/4] docs: fix underline length --- docs/frameworks/arduino.rst | 2 +- docs/platforms/atmelavr.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/frameworks/arduino.rst b/docs/frameworks/arduino.rst index df2ab830..290d1c90 100644 --- a/docs/frameworks/arduino.rst +++ b/docs/frameworks/arduino.rst @@ -631,7 +631,7 @@ PanStamp - 4 Kb Punch Through -~~~~~~~~ +~~~~~~~~~~~~~ .. list-table:: :header-rows: 1 diff --git a/docs/platforms/atmelavr.rst b/docs/platforms/atmelavr.rst index e54f28f5..b49b7456 100644 --- a/docs/platforms/atmelavr.rst +++ b/docs/platforms/atmelavr.rst @@ -602,7 +602,7 @@ PanStamp - 2 Kb Punch Through -~~~~~~~~ +~~~~~~~~~~~~~ .. list-table:: :header-rows: 1 From 0668d6d2908fbcd9290dc090110a125e74cdf729 Mon Sep 17 00:00:00 2001 From: Matthew Lewis Date: Wed, 23 Sep 2015 11:54:00 -0500 Subject: [PATCH 3/4] docs: remove LightBlue Bean docs --- docs/frameworks/arduino.rst | 20 -------------------- docs/platforms/atmelavr.rst | 20 -------------------- 2 files changed, 40 deletions(-) diff --git a/docs/frameworks/arduino.rst b/docs/frameworks/arduino.rst index 290d1c90..ba909a08 100644 --- a/docs/frameworks/arduino.rst +++ b/docs/frameworks/arduino.rst @@ -630,26 +630,6 @@ PanStamp - 32 Kb - 4 Kb -Punch Through -~~~~~~~~~~~~~ - -.. list-table:: - :header-rows: 1 - - * - Type ``board`` - - Name - - Microcontroller - - Frequency - - Flash - - RAM - - * - ``lightblue-bean`` - - `LightBlue Bean `_ - - ATMEGA32U4 - - 8 MHz - - 32 Kb - - 2 Kb - Quirkbot ~~~~~~~~ diff --git a/docs/platforms/atmelavr.rst b/docs/platforms/atmelavr.rst index b49b7456..7a536133 100644 --- a/docs/platforms/atmelavr.rst +++ b/docs/platforms/atmelavr.rst @@ -601,26 +601,6 @@ PanStamp - 32 Kb - 2 Kb -Punch Through -~~~~~~~~~~~~~ - -.. list-table:: - :header-rows: 1 - - * - Type ``board`` - - Name - - Microcontroller - - Frequency - - Flash - - RAM - - * - ``lightblue-bean`` - - `LightBlue Bean `_ - - ATMEGA32U4 - - 8 MHz - - 32 Kb - - 2 Kb - Quirkbot ~~~~~~~~ From f812e74324799401fcc3388d6e676bbb363eae7c Mon Sep 17 00:00:00 2001 From: Matthew Lewis Date: Wed, 23 Sep 2015 11:57:54 -0500 Subject: [PATCH 4/4] config: fix Punch Through vendor name --- platformio/boards/punchthrough.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/boards/punchthrough.json b/platformio/boards/punchthrough.json index bf6fc85f..6e7d41ed 100644 --- a/platformio/boards/punchthrough.json +++ b/platformio/boards/punchthrough.json @@ -1,7 +1,7 @@ { "lightblue-bean": { "name": "LightBlue Bean", - "vendor": "Punch Through Design", + "vendor": "Punch Through", "url": "https://punchthrough.com/bean", "platform": "atmelavr",