A basic guide to show how to use interruptions on programs using a MSP430FR6989 microcontroller and the GCC tools on Linux.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
684 B

OBJECTS=prueba.o
MAP=prueba.map
MAKEFILE=Makefile
ifeq ($(OS),Windows_NT)
ifeq ($(shell uname -o),Cygwin)
RM= rm -rf
else
RM= del /q
endif
else
RM= rm -rf
endif
GCC_DIR = /home/alberto/msp430-gcc/bin
SUPPORT_FILE_DIRECTORY = /home/alberto/msp430-gcc/include
# Please set your device here
DEVICE = msp430fr6989
CC = $(GCC_DIR)/msp430-elf-gcc
GDB = $(GCC_DIR)/msp430-elf-gdb
CFLAGS = -I $(SUPPORT_FILE_DIRECTORY) -mmcu=$(DEVICE) -Og -Wall -g
LFLAGS = -L $(SUPPORT_FILE_DIRECTORY) -Wl,-Map,$(MAP),--gc-sections
all: ${OBJECTS}
$(CC) $(CFLAGS) $(LFLAGS) $? -o $(DEVICE).out
clean:
$(RM) $(OBJECTS)
$(RM) $(MAP)
$(RM) *.out
debug: all
$(GDB) $(DEVICE).out