Project

General

Profile

Statistics
| Branch: | Revision:

root / scout_avr / Makefile @ c2b64420

History | View | Annotate | Download (847 Bytes)

1

    
2
PART=m128rfa1
3
MCU=atmega128rfa1
4

    
5
#PART=m328p
6
#MCU=atmega328
7

    
8
#PART=m2560
9
#MCU=atmega2560
10

    
11
PROG=avrispMKII
12
#PROG=stk600
13

    
14
F_CPU=16000000
15
SRC=src/*.cpp src/ros_lib/*.cpp
16
HDR=src/*.h
17
FLAGS=-Isrc/ros_lib -Isrc -mmcu=$(MCU) -DF_CPU=$(F_CPU)UL -funsigned-char -Os -fpack-struct -Wall
18

    
19
ROS_MSG_DEPS=rosserial_msgs std_msgs bom sonar
20

    
21
default: scout_avr.hex
22

    
23
all: ros_lib scout_avr.hex
24

    
25
%.hex: %.elf
26
	avr-objcopy -j .text -j .data -O ihex $< $@
27

    
28
scout_avr.elf: $(SRC) $(HDR)
29
	avr-g++ $(FLAGS) $(SRC) -o scout_avr.elf
30

    
31
program: scout_avr.hex
32
	avrdude -p $(PART) -c $(PROG) -P usb -B 1 -U flash:w:scout_avr.hex
33

    
34
ros_lib: ros_lib_nomsgs msgs
35

    
36
ros_lib_nomsgs:
37
	rm -rf src/ros_lib
38
	cp -r `rospack find rosserial_client`/src/ros_lib src
39

    
40
msgs:
41
	rosrun rosserial_client make_library.py src $(ROS_MSG_DEPS)
42

    
43
clean:
44
	rm -rf scout_avr.elf scout_avr.hex src/ros_lib