Commit 0ebed0a24aa83ce8f30aaa28c108b10514a0041e
1 parent
89de38a4
MAJ Fichier
Showing
2 changed files
with
12 additions
and
5 deletions
Show diff stats
1 | +#!/bin/sh | |
2 | + | |
1 | 3 | wget -N -P ./ http://houplin.studserv.deule.net/~grouille/PROJET/upload/binaire.c |
2 | 4 | wget -N -P ./ http://houplin.studserv.deule.net/~grouille/PROJET/upload/sensor.xml |
3 | 5 | wget -N -P ./ http://houplin.studserv.deule.net/~grouille/PROJET/upload/demande.txt |
4 | -gcc -o binaire binaire.c -lwiringPi | |
5 | -./blink | |
6 | -./binaire | |
7 | 6 | |
7 | +gcc -o program program.c -lwiringPi | |
8 | +./program | |
9 | + | |
10 | +cp binaire.c Build/main.c | |
11 | +cd Build | |
12 | +make clean | |
13 | +make upload | |
14 | +#avrdude -p atmega328p -C ~/avrdude_gpio.conf -c pi_3 -v -U flash:w:build-uno/Build.hex | ... | ... |