-
Notifications
You must be signed in to change notification settings - Fork 1k
Added support for Embedded Artists LPC4088 boards #96
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
Conversation
LPC4088 Display Module (LPC4088DM) LPC4088 QuickStart Board (LPC4088QSB)
source/board/lpc4088dm.c
Outdated
* limitations under the License. | ||
*/ | ||
|
||
const char *board_id = "1065"; |
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.
This board ID isn't in the database. Is this a new board?
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.
I just sent you an email with an explanation of it.
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.
Thanks. I'll see about getting this added to the database.
Changes: - Changed board id for lpc4088dm to 1062 - Removed BOARD_* defines - Splitted target.c into two separate files to avoid ifdef - Moved most of target specific code from gpio.c to target_reset.c - Changed default FS size from 8 to 68 MB - Added GPIO_RESET_IN_NOT_SUPPORTED define for boards not supporting RESET input signal
Replaced my own file system changes with pull request #112 and tested it. Tested successfully. |
|
||
// Must be bigger than 4x the flash size of the biggest supported | ||
// device. This is to accomidate for hex file programming. | ||
// device. This is to accomodate for hex file programming. |
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.
Nitpick - should be "accommodate"
Replaced by pull request #121 to get a cleaner commit history. |
Support for
LPC4088 Display Module (LPC4088DM)
LPC4088 QuickStart Board (LPC4088QSB)
Both boards have QSPI flash (16MB and 8MB respectively) so the file system had to be increased. The comment said that 4x max size was needed and with 16MB QSPI + 512KB internal flash that means ca 68MB file system. The OVERRIDE_FS_MB_SIZE flag (if set) controls the size of the file system.