From 18b2ac958fc666a3e2dc76de733906dc1d38ef5d Mon Sep 17 00:00:00 2001 From: grouille Date: Wed, 4 Mar 2020 14:55:28 +0100 Subject: [PATCH] Ajout dossier contenant les fichiers à mettre sur la raspberry --- fichiersRPI/Build/Makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ fichiersRPI/Build/main.c | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ fichiersRPI/Rpi_to_server.py | 24 ++++++++++++++++++++++++ fichiersRPI/load.sh | 11 +++++++++++ fichiersRPI/script.sh | 7 +++++++ 5 files changed, 198 insertions(+), 0 deletions(-) create mode 100644 fichiersRPI/Build/Makefile create mode 100755 fichiersRPI/Build/main.c create mode 100755 fichiersRPI/Rpi_to_server.py create mode 100755 fichiersRPI/load.sh create mode 100755 fichiersRPI/script.sh diff --git a/fichiersRPI/Build/Makefile b/fichiersRPI/Build/Makefile new file mode 100644 index 0000000..d501813 --- /dev/null +++ b/fichiersRPI/Build/Makefile @@ -0,0 +1,42 @@ +export CC = avr-gcc + +export MCU = atmega328p +export TARGET_ARCH = -mmcu=$(MCU) + +export CFLAGS = -Wall -I. -DF_CPU=16000000 -Os #-g +export LDFLAGS = -g $(TARGET_ARCH) -lm -Wl,--gc-sections # -Os + + +TARGET = blink +CPPFLAGS = -mmcu=$(MCU) +PGMERISP = -c pi_3 +ARVDUDECONF= -C ~/avrdude_gpio.conf +export DUDE = avrdude -v -p $(MCU) $(AVRDUDECONF) + +C_SRC = $(wildcard *.c) +OBJS = $(C_SRC:.c=.o) + + +all: $(TARGET).hex + + +clean: + rm -f *.o *.hex *.elf build-uno + +%.o:%.c + $(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@ + + +$(TARGET).elf: $(OBJS) + $(CC) $(LDFLAGS) -o $@ $(OBJS) + +$(TARGET).hex: $(TARGET).elf + avr-objcopy -j .text -j .data -O ihex $(TARGET).elf $(TARGET).hex + avr-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 -O ihex $(TARGET).elf eeprom.hex + +upload: $(TARGET).hex + $(DUDE) $(PGMERISP) -U flash:w:$(TARGET).hex + +size: $(TARGET).elf + avr-size --format=avr --mcu=$(MCU) $(TARGET).elf + diff --git a/fichiersRPI/Build/main.c b/fichiersRPI/Build/main.c new file mode 100755 index 0000000..4ca1fe9 --- /dev/null +++ b/fichiersRPI/Build/main.c @@ -0,0 +1,114 @@ +#include // for the input/output register +#include +#include +#include +#include +#include +#define PRESCALER 1024 +#define TIME_SLOT 20 +#define BAUDRATE 103 + +#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit)) +#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) + +char Donnee[24]; +float temp; + +void init_serial(void) +{ + /* ACHTUNG : we suppose UBRR value < 0xff */ + /* Not true in all case */ + uint8_t baudrate = BAUDRATE; + /* Set baud rate */ + UBRR0H = 0; + UBRR0L = baudrate; + /* Enable transmitter *///task_led_red(); + //task_send_serial('A'); + UCSR0B = (1<