forked from skimskimskim/ALICE-on-Contiki-NG
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into bugfix/zoul-pm
- Loading branch information
Showing
47 changed files
with
2,728 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- makefile -*- | ||
# | ||
# GCC specific definitions and actions | ||
# | ||
|
||
GCC_MAJOR_VERSION := $(shell $(CC) -v 2>&1 | grep "gcc version" | cut -b 13) | ||
GCC_MINOR_VERSION := $(shell $(CC) -v 2>&1 | grep "gcc version" | cut -b 15) | ||
|
||
# Warn if using version 6.3.x of arm-none-eabi-gcc | ||
ifeq ("$(CC)","arm-none-eabi-gcc") | ||
ifeq (6,$(GCC_MAJOR_VERSION)) | ||
ifeq (3,$(GCC_MINOR_VERSION)) | ||
$(warning Warning: you're using a version of $(CC) that may create broken Contiki-NG executables.) | ||
$(warning We recommend to upgrade or downgrade your toolchain.) | ||
endif | ||
endif | ||
endif | ||
|
||
# Warn if using 4.6.x or older msp430-gcc | ||
ifeq ("$(CC)","msp430-gcc") | ||
ifeq ($(shell test $(GCC_MAJOR_VERSION) -lt 5; echo $$?),0) | ||
ifeq ($(shell test $(GCC_MINOR_VERSION) -lt 7; echo $$?),0) | ||
$(warning Warning: you're using an old version of $(CC).) | ||
$(warning Upgrade to 4.7.x is recommended for extended memory support and bugfixes.) | ||
endif | ||
endif | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,4 +97,4 @@ else | |
endif | ||
|
||
### For the login etc targets | ||
BAUDRATE = 115200 | ||
BAUDRATE ?= 115200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.