-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathboards.txt
More file actions
39 lines (33 loc) · 1.45 KB
/
boards.txt
File metadata and controls
39 lines (33 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
menu.SerialDestination=Serial to Console
menu.GDBDebug=Enable gdb
##############################################################
bplus.name=RaspberryPI B+/2
bplus.upload.via_ssh=true
bplus.upload.tool=scp
bplus.upload.verbose=
bplus.upload.speed=115200
bplus.build.mcu=bplus
bplus.build.core=piduino
bplus.build.variant=bplus
bplus.build.board=RASPI
bplus.build.f_cpu=700000000L
bplus.build.debug_flags=
bplus.build.optimization_flags=-O3
bplus.build.extra_flags=-DRASPIå
##############################################################
bplus.menu.SerialDestination.disabled=Disabled
bplus.menu.SerialDestination.disabled.build.extra_flags=-DRASPI
bplus.menu.SerialDestination.enabled=Enabled
bplus.menu.SerialDestination.enabled.build.extra_flags=-DRASPI -DSERIAL_TO_CONSOLE
##############################################################
# Add a menu entry called "Enable gdb" which is used to enable or disable support for the
# GNU Debugger called "gdb". Dependening on the settings that that user selects, we either
# compile with or without the "-g" flag. Adding the "-g" flag includes symbolic debugging.
# The symbol "build.debug_flags" get set based on the value the user selects.
#
bplus.menu.GDBDebug.disabled=Disabled
bplus.menu.GDBDebug.disabled.build.debug_flags=
bplus.menu.GDBDebug.disabled.build.optimization_flags=-O3
bplus.menu.GDBDebug.enabled=Enabled
bplus.menu.GDBDebug.enabled.build.debug_flags=-g
bplus.menu.GDBDebug.enabled.build.optimization_flags=