-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fix misuses read and write pointers #89
Merged
phillipjohnston
merged 9 commits into
embeddedartistry:master
from
hagaigold:fix/misuses-Read-and-Write-Pointers
Jan 25, 2022
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
54517d0
makefile- allow to override TOOLROOT variable
hagaigold fceb7a3
fix misuse of REG_S3_RX_RD0 (read pointer)
hagaigold f99bd4a
fix misuse of REG_S3_TX_WR0 (write pointer)
hagaigold a0eb3af
rename macros
hagaigold 76660e6
simplified tftpPoll
hagaigold 551f890
decrease TFTP_PACKET_DELAY
hagaigold 9459371
Debug Main TITLE- add WIZnet type
hagaigold b10bb69
refactoring global (extern) variables definition
hagaigold 1695ac0
fix MAX_ADDR (bootloader size)
hagaigold File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,11 +36,11 @@ | |
#define INVALID_IMAGE 5 | ||
|
||
#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) | ||
#define MAX_ADDR 0x7000 /// For 328p/32u4 with 2Kword bootloader | ||
#define MAX_ADDR 0x7000 /// For 328p/32u4 with 2Kword (4K-Byte) bootloader | ||
#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega1284P__) | ||
#define MAX_ADDR 0x1F000 /// For 1280 with 2Kword bootloader | ||
#define MAX_ADDR 0x1E000 /// For 1280 with 4Kword (8K-Byte) bootloader | ||
#elif defined(__AVR_ATmega2560__) | ||
#define MAX_ADDR 0x3F000 /// For 2560 with 2Kword bootloader | ||
#define MAX_ADDR 0x3E000 /// For 2560 with 4Kword (8K-Byte) bootloader | ||
#endif | ||
|
||
#define TFTP_DATA_SIZE 512 | ||
|
@@ -51,17 +51,13 @@ | |
#define TFTP_PACKET_MAX_SIZE \ | ||
(UDP_HEADER_SIZE + TFTP_OPCODE_SIZE + TFTP_BLOCKNO_SIZE + TFTP_MAX_PAYLOAD) | ||
|
||
#define TFTP_PACKET_DELAY 400 | ||
#define TFTP_PACKET_DELAY 5 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Big improvement |
||
|
||
/** | ||
* Tftp status flag, it is set to TRUE if flashing from | ||
* tftp is currently active */ | ||
uint8_t tftpFlashing; | ||
uint8_t tftpInitError; | ||
|
||
#ifndef TFTP_RANDOM_PORT | ||
uint16_t tftpTransferPort; | ||
#endif | ||
extern uint8_t tftpFlashing; | ||
extern uint8_t tftpInitError; | ||
|
||
void tftpInit(void); | ||
uint8_t tftpPoll(void); | ||
|
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really like this new approach!