|
1 | 1 | # ADI MAX78000/MAX78002 Model Training and Synthesis
|
2 | 2 |
|
3 |
| -September 20, 2023 |
| 3 | +October 23, 2023 |
4 | 4 |
|
5 | 5 | ADI’s MAX78000/MAX78002 project is comprised of five repositories:
|
6 | 6 |
|
@@ -601,17 +601,17 @@ The [Analog Devices MSDK](https://github.com/Analog-Devices-MSDK/msdk) for MAX78
|
601 | 601 | MAXIM_PATH=$HOME/MaximSDK # Change me!
|
602 | 602 | export MAXIM_PATH
|
603 | 603 |
|
604 |
| - # Arm GCC |
605 |
| - ARMGCC_DIR=$MAXIM_PATH/Tools/GNUTools/10.3 |
| 604 | + # Arm GCC -- adjust version number |
| 605 | + ARMGCC_DIR=$MAXIM_PATH/Tools/GNUTools/12.3 |
606 | 606 | echo $PATH | grep -q -s "$ARMGCC_DIR/bin"
|
607 | 607 | if [ $? -eq 1 ] ; then
|
608 | 608 | PATH=$PATH:"$ARMGCC_DIR/bin"
|
609 | 609 | export PATH
|
610 | 610 | export ARMGCC_DIR
|
611 | 611 | fi
|
612 | 612 |
|
613 |
| - # RISC-V GCC |
614 |
| - RISCVGCC_DIR=$MAXIM_PATH/Tools/xPack/riscv-none-embed-gcc/10.2.0-1.2 |
| 613 | + # RISC-V GCC -- adjust version number |
| 614 | + RISCVGCC_DIR=$MAXIM_PATH/Tools/xPack/riscv-none-embed-gcc/12.3.0-2 |
615 | 615 | echo $PATH | grep -q -s "$RISCVGCC_DIR/bin"
|
616 | 616 | if [ $? -eq 1 ] ; then
|
617 | 617 | PATH=$PATH:"$RISCVGCC_DIR/bin"
|
@@ -643,15 +643,15 @@ The MAX78000/MAX78002 MSDK is available as a git repository. The repository cont
|
643 | 643 | $ git clone https://github.com/Analog-Devices-MSDK/msdk.git sdk
|
644 | 644 | ```
|
645 | 645 |
|
646 |
| -2. Download and install the Arm Embedded GNU Toolchain from [https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads). |
| 646 | +2. Download and install the Arm Embedded GNU Toolchain from [https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads). |
647 | 647 |
|
648 |
| - * Recommended version: 10.3-2021.10 *(newer versions may or may not work correctly)* |
649 |
| - * Recommended installation location: `/usr/local/gcc-arm-none-eabi-10.3-2021.10/` |
| 648 | + * Recommended version: 12.3.Rel1 *(newer versions may or may not work correctly)* |
| 649 | + * Recommended installation location: `/usr/local/arm-gnu-toolchain-12.3.rel1/` |
650 | 650 |
|
651 |
| -3. Download and install the RISC-V Embedded GNU Toolchain from [https://github.com/xpack-dev-tools/riscv-none-embed-gcc-xpack/releases/](https://github.com/xpack-dev-tools/riscv-none-embed-gcc-xpack/releases/) |
| 651 | +3. Download and install the RISC-V Embedded GNU Toolchain from [https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases](https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/) |
652 | 652 |
|
653 |
| - * Recommended version: 10.2.0-1.2 *(newer versions may or may not work correctly)* |
654 |
| - * Recommended installation location: `/usr/local/riscv-none-embed-gcc/10.2.0-1.2/` |
| 653 | + * Recommended version: 12.3.0-2 *(newer versions may or may not work correctly)* |
| 654 | + * Recommended installation location: `/usr/local/xpack-riscv-none-elf-gcc-12.3.0-2/` |
655 | 655 |
|
656 | 656 | 4. Install GNU Make
|
657 | 657 |
|
|
0 commit comments