| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | # Copyright (C) Ivan Kravets <me@ikravets.com> | 
					
						
							|  |  |  | # See LICENSE for details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  |     Builder for Texas Instruments | 
					
						
							|  |  |  |     MSP430 Ultra-Low Power 16-bit microcontrollers | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from os.path import join | 
					
						
							| 
									
										
										
										
											2014-07-31 16:20:31 +03:00
										 |  |  | from platform import system | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-29 12:45:10 +02:00
										 |  |  | from SCons.Script import (COMMAND_LINE_TARGETS, AlwaysBuild, Builder, Default, | 
					
						
							| 
									
										
										
										
											2014-07-27 22:42:04 +03:00
										 |  |  |                           DefaultEnvironment) | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | env = DefaultEnvironment() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | env.Replace( | 
					
						
							|  |  |  |     AR="msp430-ar", | 
					
						
							| 
									
										
										
										
											2014-06-11 21:31:36 +03:00
										 |  |  |     AS="msp430-gcc", | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |     CC="msp430-gcc", | 
					
						
							|  |  |  |     CXX="msp430-g++", | 
					
						
							|  |  |  |     OBJCOPY="msp430-objcopy", | 
					
						
							|  |  |  |     RANLIB="msp430-ranlib", | 
					
						
							| 
									
										
										
										
											2015-02-09 19:57:39 +02:00
										 |  |  |     SIZETOOL="msp430-size", | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ARFLAGS=["rcs"], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASFLAGS=[ | 
					
						
							| 
									
										
										
										
											2015-02-02 14:41:37 +02:00
										 |  |  |         "-c", | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |         "-g",  # include debugging info (so errors include line numbers) | 
					
						
							| 
									
										
										
										
											2014-06-02 20:53:36 +03:00
										 |  |  |         "-x", "-assembler-with-cpp", | 
					
						
							| 
									
										
										
										
											2014-06-21 22:27:58 +03:00
										 |  |  |         "-mmcu=$BOARD_MCU" | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |     ], | 
					
						
							| 
									
										
										
										
											2014-06-21 22:27:58 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |     CCFLAGS=[ | 
					
						
							|  |  |  |         "-g",  # include debugging info (so errors include line numbers) | 
					
						
							|  |  |  |         "-Os",  # optimize for size | 
					
						
							| 
									
										
										
										
											2014-08-02 13:23:42 +03:00
										 |  |  |         # "-Wall",  # show warnings | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |         "-ffunction-sections",  # place each function in its own section | 
					
						
							|  |  |  |         "-fdata-sections", | 
					
						
							|  |  |  |         "-MMD",  # output dependancy info | 
					
						
							| 
									
										
										
										
											2014-06-21 22:27:58 +03:00
										 |  |  |         "-mmcu=$BOARD_MCU" | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CPPDEFINES=[ | 
					
						
							|  |  |  |         "F_CPU=$BOARD_F_CPU" | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     LINK="$CC", | 
					
						
							|  |  |  |     LINKFLAGS=[ | 
					
						
							|  |  |  |         "-Os", | 
					
						
							|  |  |  |         "-mmcu=$BOARD_MCU", | 
					
						
							|  |  |  |         "-Wl,-gc-sections,-u,main" | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-09 19:57:39 +02:00
										 |  |  |     SIZEPRINTCMD='"$SIZETOOL" -B -d $SOURCES', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-22 23:55:17 +02:00
										 |  |  |     UPLOADER=join("$PIOPACKAGES_DIR", "tool-mspdebug", "mspdebug"), | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |     UPLOADERFLAGS=[ | 
					
						
							| 
									
										
										
										
											2014-07-31 16:20:31 +03:00
										 |  |  |         "$UPLOAD_PROTOCOL" if system() != "Windows" else "tilib", | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  |         "--force-reset" | 
					
						
							|  |  |  |     ], | 
					
						
							|  |  |  |     UPLOADCMD='$UPLOADER $UPLOADERFLAGS "prog $SOURCES"' | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | env.Append( | 
					
						
							|  |  |  |     BUILDERS=dict( | 
					
						
							|  |  |  |         ElfToHex=Builder( | 
					
						
							|  |  |  |             action=" ".join([ | 
					
						
							|  |  |  |                 "$OBJCOPY", | 
					
						
							|  |  |  |                 "-O", | 
					
						
							|  |  |  |                 "ihex", | 
					
						
							|  |  |  |                 "-R", | 
					
						
							|  |  |  |                 ".eeprom", | 
					
						
							|  |  |  |                 "$SOURCES", | 
					
						
							|  |  |  |                 "$TARGET"]), | 
					
						
							|  |  |  |             suffix=".hex" | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |     ) | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-02 20:47:05 +03:00
										 |  |  | CORELIBS = env.ProcessGeneral() | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Target: Build executable and linkable firmware | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 20:11:52 +02:00
										 |  |  | target_elf = env.BuildFirmware(["m"] + CORELIBS) | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Target: Build the .hex | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-27 22:42:04 +03:00
										 |  |  | if "uploadlazy" in COMMAND_LINE_TARGETS: | 
					
						
							| 
									
										
										
										
											2015-02-18 20:21:20 +02:00
										 |  |  |     target_firm = join("$BUILD_DIR", "firmware.hex") | 
					
						
							| 
									
										
										
										
											2014-07-27 22:42:04 +03:00
										 |  |  | else: | 
					
						
							| 
									
										
										
										
											2015-02-18 20:21:20 +02:00
										 |  |  |     target_firm = env.ElfToHex(join("$BUILD_DIR", "firmware"), target_elf) | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-09 19:57:39 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # Target: Print binary size | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | target_size = env.Alias("size", target_elf, "$SIZEPRINTCMD") | 
					
						
							|  |  |  | AlwaysBuild(target_size) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | # | 
					
						
							|  |  |  | # Target: Upload firmware | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 20:21:20 +02:00
										 |  |  | upload = env.Alias(["upload", "uploadlazy"], target_firm, "$UPLOADCMD") | 
					
						
							| 
									
										
										
										
											2014-05-18 23:38:59 +03:00
										 |  |  | AlwaysBuild(upload) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Target: Define targets | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-18 20:21:20 +02:00
										 |  |  | Default([target_firm, target_size]) |