Skip to content
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

Add gd32vw55x flash driver #12

Merged
merged 3 commits into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/flash/nor/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ NOR_DRIVERS = \
%D%/fespi.c \
%D%/fm3.c \
%D%/fm4.c \
%D%/gd32vw55x.c \
%D%/jtagspi.c \
%D%/kinetis.c \
%D%/kinetis_ke.c \
Expand Down
2 changes: 2 additions & 0 deletions src/flash/nor/drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ extern const struct flash_driver fm3_flash;
extern const struct flash_driver fm4_flash;
extern const struct flash_driver fespi_flash;
extern const struct flash_driver gd32vf103_flash;
extern const struct flash_driver gd32vw55x_flash;
extern const struct flash_driver jtagspi_flash;
extern const struct flash_driver kinetis_flash;
extern const struct flash_driver kinetis_ke_flash;
Expand Down Expand Up @@ -126,6 +127,7 @@ static const struct flash_driver * const flash_drivers[] = {
&fm4_flash,
&fespi_flash,
&gd32vf103_flash,
&gd32vw55x_flash,
&jtagspi_flash,
&kinetis_flash,
&kinetis_ke_flash,
Expand Down
Loading
Loading