Skip to content

Commit bc8a8f3

Browse files
author
Robert Muchsel
authored
Minor documentation updates (#314)
1 parent d6d8b0d commit bc8a8f3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ADI MAX78000/MAX78002 Model Training and Synthesis
22

3-
September 20, 2023
3+
October 23, 2023
44

55
ADI’s MAX78000/MAX78002 project is comprised of five repositories:
66

@@ -601,17 +601,17 @@ The [Analog Devices MSDK](https://github.com/Analog-Devices-MSDK/msdk) for MAX78
601601
MAXIM_PATH=$HOME/MaximSDK # Change me!
602602
export MAXIM_PATH
603603
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
606606
echo $PATH | grep -q -s "$ARMGCC_DIR/bin"
607607
if [ $? -eq 1 ] ; then
608608
PATH=$PATH:"$ARMGCC_DIR/bin"
609609
export PATH
610610
export ARMGCC_DIR
611611
fi
612612
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
615615
echo $PATH | grep -q -s "$RISCVGCC_DIR/bin"
616616
if [ $? -eq 1 ] ; then
617617
    PATH=$PATH:"$RISCVGCC_DIR/bin"
@@ -643,15 +643,15 @@ The MAX78000/MAX78002 MSDK is available as a git repository. The repository cont
643643
$ git clone https://github.com/Analog-Devices-MSDK/msdk.git sdk
644644
```
645645
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).
647647
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/`
650650
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/)
652652
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/`
655655
656656
4. Install GNU Make
657657

README.pdf

-1.49 KB
Binary file not shown.

openocd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following additional packages are also required:
3535

3636
## Building from Scratch
3737

38-
To obtain the full OpenOCD source code, and to re-build the binaries, please use `git clone https://github.com/MaximIntegratedMicros/openocd.git`.
38+
To obtain the full OpenOCD source code, and to re-build the binaries, please use `git clone https://github.com/Analog-Devices-MSDK/openocd.git`.
3939

4040
### Linux
4141

0 commit comments

Comments
 (0)