forked from me-no-dev/RasPiArduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboards.txt
More file actions
36 lines (31 loc) · 1.39 KB
/
boards.txt
File metadata and controls
36 lines (31 loc) · 1.39 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
##############################################################
bplus.name=RaspberryPI B+/2
bplus.upload.tool=scp
bplus.upload.verbose=
bplus.upload.speed=115200
bplus.build.mcu=bplus
bplus.build.f_cpu=700000000L
bplus.build.board=RASPI
bplus.build.core=piduino
bplus.build.variant=bplus
bplus.build.debug_flags=
bplus.build.optimization_flags=-O3
##############################################################
menu.SerialDestination=Serial to Console
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.
#
menu.GDBDebug=Enable gdb
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=