diff --git a/raspberry/Build/Makefile b/raspberry/Build/Makefile deleted file mode 100644 index d501813..0000000 --- a/raspberry/Build/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -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/raspberry/Build/main.c b/raspberry/Build/main.c deleted file mode 100755 index 4ca1fe9..0000000 --- a/raspberry/Build/main.c +++ /dev/null @@ -1,114 +0,0 @@ -#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< // 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<