Timer based UART for sending and receiving bytes on the FX2 #23
Open
RacingTornado wants to merge 1 commit intomithro:linux-descriptorsfrom
Open
Timer based UART for sending and receiving bytes on the FX2 #23RacingTornado wants to merge 1 commit intomithro:linux-descriptorsfrom
RacingTornado wants to merge 1 commit intomithro:linux-descriptorsfrom
Conversation
… to access printf() and scanf() functionality
| void timer1_isr () | ||
| __interrupt TF1_ISR | ||
| { | ||
| process_isr(); |
Owner
There was a problem hiding this comment.
process_isr? That isn't a good name for something...
Owner
|
This CL also fails on the minimum requirements for review. |
This file contains hidden or 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
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.
This commit adds UART timer based functionality to the FX2. The same steps are applicable to this pull request to make and build use the following steps:
To run this first clone the repository, then cd to the fx2lib directory and checkout this particular branch.
After this run 2 commands:
git submodule initgit submodule updatemakeAfter this , navigate to the examples/uart_timer directory and execute the following commands:
makeNow push the FX2 device inside the USB port(remove any udev rules you may have set up for Cypresse's VID and PID) and run
make fx2_downloadAfter this open minicom
sudo minicom -H -w name_of_configurationYou should see the data which is read from the EEPROM displayed on your console. Make sure the UART0 pins are connected to the appropriate GPIO's on the FX2. Currently the speed supported is 9600bps. Make sure this is set correctly. Currently the pins are hardwired, however after the fast_uart is merged this will be updated, and we will use macros to create this automatically. Currently TX is PA4, RX is PA5 on the FX2.