-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GCC port merge #9
Open
awsmit07
wants to merge
17
commits into
eiefirmware:master
Choose a base branch
from
awsmit07:gcc-port
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Removes all IAR project/settings files. Doing this as a separate commit to separate out the noise.
Adds waf with the wscript to define the build, which is setup to use the ARM gcc compiler. Also adds vscode configuration with pre-setup build/launch/debug configurations and a set of recommended extensions to make debugging the board possible.
Improves the logic for finding GCC and JLink tools under Mac and linux, now that their default install paths are known.
A few fixes, probably not all where needed: - Don't enable peripheral clocks until clocks sources are stabalized - Ensure all clock operations wait for the appropriate status register bits. - (The important one) don't change the flash wait states until the clock is bumped up to 12 MHz. This works around an errata where the flash controller can't operate at sub-5MHz with the 2-wait-state setting.
When using the built-in build command (ctrl+shift+b, or when starting a debug session) vscode will parse the output for "problems". This was working but trying to navigate to the issue fails. This fixes the config to ensure paths are interpreted correctly, and to also make the build task compile everything instead of stopping on error.
check_gcc_version() had the .exe extension hardcoded, make this only happen on windows.
Add support for dot matrix board to wscript. Using the --board option while running waf configure allows the user to set the default board to DOT_MATRIX or ASCII. Currently the captouch support for the dot matrix board is disabled due to the Atmel QTouch library for GCC being missing.
Add the following extension to the list of recommended extensions - Serial monitor - Git lens - Git graph
Add new launch menu item for debugging the dot matrix board. Change ASCII board debug menu name
Update the windows and macOS ARM GNU toolchain version to the latest available (13.3 Rel 1)
Add readme specifying how to set up the project
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Merge request of James' GCC port and the additional modifications I made