Difference between revisions of "First Project on Zolertia Firefly"

From Cyber-Physical Systems Laboratory
Jump to navigationJump to search
(Created page with "'''Step 0. Install tools:''' sudo apt-get update sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi '''Step 1. Clone Contiki Repo:''' git clone https://github.com/contik...")
 
Line 1: Line 1:
'''Step 0. Install tools:'''
+
'''Step 0. Install tools:'''\
sudo apt-get update
+
sudo apt-get update\
sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi
+
sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi\
 
'''Step 1. Clone Contiki Repo:'''
 
'''Step 1. Clone Contiki Repo:'''
 
git clone https://github.com/contiki-os/contiki.git
 
git clone https://github.com/contiki-os/contiki.git

Revision as of 02:34, 22 June 2017

Step 0. Install tools:\ sudo apt-get update\ sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi\ Step 1. Clone Contiki Repo: git clone https://github.com/contiki-os/contiki.git Step 3. Update the dependencies: cd contiki git submodule update --init