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 STEP-MAX10 V1 board support. #506

Merged
merged 1 commit into from
Jan 11, 2025
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
2 changes: 1 addition & 1 deletion doc/FPGAs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Intel:
Flash: OK

- Description: Max 10
Model: 10M08
Model: 10M02, 10M08
URL: https://www.intel.fr/content/www/fr/fr/products/details/fpga/max/10.html
Memory: SVF
Flash: POF
Expand Down
7 changes: 7 additions & 0 deletions doc/boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -995,3 +995,10 @@
FPGA: Titanium Ti180J484 (and others)
Memory: OK
Flash: NA

- ID: step-max10_v1
Description: STEP MAX10 V1
URL: https://wiki.stepfpga.com/step-max10
FPGA: Altera 10M02SCM153C8G
Memory: OK
Flash: NA
3 changes: 2 additions & 1 deletion src/board.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ static std::map <std::string, target_board_t> board_list = {
JTAG_BOARD("zybo_z7_10", "xc7z010clg400", "digilent", 0, 0, CABLE_DEFAULT),
JTAG_BOARD("zybo_z7_20", "xc7z020clg400", "digilent", 0, 0, CABLE_DEFAULT),
JTAG_BOARD("mini_itx", "xc7z100ffg900", "jtag-smt2-nc", 0, 0, CABLE_DEFAULT),
JTAG_BOARD("vmm3", "xc7s50csga324", "ft2232", 0, 0, CABLE_DEFAULT)
JTAG_BOARD("vmm3", "xc7s50csga324", "ft2232", 0, 0, CABLE_DEFAULT),
JTAG_BOARD("step-max10_v1", "10m02scm153c8g", "usb-blaster",0, 0, CABLE_DEFAULT)
};

#endif
Loading