# Install the H10 SDK on Linux PC

<abstract>
This article illustrates how to install the H10 RIOT toolchain on a Linux PC
</abstract>

Install on your Linux PC the requested packages:

	sudo apt update
	sudo apt -y install build-essential gcc-arm-none-eabi libudev-dev python3-serial git

Download the RIOT sources from the official repository:

	git clone --depth 1 https://github.com/RIOT-OS/RIOT

Download the H10 specific sources:

	git clone --depth 1 https://github.com/lora3a/lora3a-boards

## Compile the sources

To compile firmware for a sensor node and flash it, the command needed is:

	cd lora3a-boards/examples/sensor-node
	make flash

If you need a terminal add term

	make flash term

