-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the NXP VEE Port for i.MX RT595 EVK with a G1120B0MIPI circular display. Signed-off-by: Fabrice Goucem <fabrice.goucem@nxp.com> Signed-off-by: Florian Quinart <florian.quinart@nxp.com> Signed-off-by: Cristinel Panfir <cristinel.panfir@nxp.com>
- Loading branch information
Showing
2,493 changed files
with
320,258 additions
and
134,165 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,26 +1,17 @@ | ||
{ | ||
"version": "1.1", | ||
"version": "1.4", | ||
"toolchainPath": "${env:ARMGCC_DIR}", | ||
"toolchainVersion": "GNU Arm Embedded Toolchain 10.3-2021.10", | ||
"linkedProjects": [], | ||
"trustZoneType": "none", | ||
"multicoreType": "none", | ||
"debug": { | ||
"linkserver": { | ||
"device": "MIMXRT595S:EVK-MIMXRT595", | ||
"core": "primary" | ||
}, | ||
"pemicro": {}, | ||
"segger": { | ||
"device": "MIMXRT595S_M33" | ||
} | ||
}, | ||
"projectType": "sdk-freestanding", | ||
"sdk": { | ||
"version": "2.12.1", | ||
"path": "${workspaceFolder}/nxpvee-mimxrt595-evk-round-bsp/mcux-sdk", | ||
"boardId": "evkmimxrt595", | ||
"deviceId": "MIMXRT595S", | ||
"coreId": "cm33_MIMXRT595S", | ||
"manifestId": "SDK_2.x_EVK-MIMXRT595_manifest_v3_13" | ||
} | ||
"projectType": "cmake-freestanding" | ||
} |
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
{ | ||
"cmake.configureOnOpen": false, | ||
"C_Cpp.errorSquiggles": "disabled", | ||
"cmake.preferredGenerators": [ | ||
"Ninja", | ||
"Unix Makefiles", | ||
"MinGW Makefiles" | ||
], | ||
"cmake.sourceDirectory": "${workspaceFolder}/nxpvee-mimxrt595-evk-round-bsp/projects/nxpvee-ui/armgcc", | ||
"cmake.buildDirectory": "${workspaceFolder}/nxpvee-mimxrt595-evk-round-bsp/projects/nxpvee-ui/armgcc/${buildType}" | ||
} | ||
"cmake.sourceDirectory": "${workspaceFolder}/bsp/projects/nxpvee-ui/armgcc", | ||
"cmake.useCMakePresets": "always", | ||
"cmake.buildTask": true | ||
} |
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,36 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "cmake", | ||
"label": "CMake: build", | ||
"command": "build", | ||
"preset": "release", | ||
"targets": [ | ||
"all" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"problemMatcher": [], | ||
"detail": "CMake template build task" | ||
}, | ||
{ | ||
"type": "cmake", | ||
"label": "CMake: clean", | ||
"command": "clean", | ||
"preset": "release", | ||
"problemMatcher": [], | ||
"detail": "CMake template clean task" | ||
}, | ||
{ | ||
"type": "cmake", | ||
"label": "CMake: configure", | ||
"command": "configure", | ||
"preset": "release", | ||
"problemMatcher": [], | ||
"detail": "CMake template configure task" | ||
} | ||
] | ||
} |
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,51 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [2.0.0] - 2024-10-31 | ||
|
||
### Added | ||
|
||
- Add support for CMakePresets in VSCode | ||
- Add Changelog. | ||
- Add NXP GPIO support. | ||
|
||
### Changed | ||
|
||
- Updated UI pack to v14.0.1 | ||
- Updated VG pack to v1.5.1 | ||
- Updated MCUXpresso SDK to v2.15.100 | ||
- Updated MicroEJ Architecture to flopi4G25#8.1.1 | ||
- Fix MicroEJ SDK 6 builds on Linux. | ||
|
||
## [1.2.0] - 2023-12-05 | ||
|
||
### Added | ||
|
||
- Add VSCode support. | ||
- Add the mock implementation of the MicroEJ Demo-Wearable-VG natives. | ||
|
||
### Removed | ||
|
||
- Remove MCUXPresso IDE support. | ||
|
||
## [1.1.0] - 2023-06-30 | ||
|
||
### Added | ||
|
||
- Add MCUXPresso IDE support. | ||
- Add West for repository management. | ||
|
||
### Changed | ||
|
||
- Update Documentation of the README. | ||
|
||
## [1.0.0] - 2022-11-28 | ||
|
||
### Added | ||
|
||
- Add MicroEJ CORE support. | ||
- Add MicroEJ UI support. | ||
- Add MicroEJ VG support. | ||
- Add Power Management. | ||
- Add Demo applications (AnimatedMascot & SimpleGFX). | ||
- Initial release of the VEE Port. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.