prusst 1.0.0

A convenient interface to the UIO kernel module for TI Programmable Real-time Units.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

PRU_ASM = pasm
ASM_FLAGS = -b

INSTALL_DIR = ..

.PHONY: all
all: $(INSTALL_DIR)/barebone_blink_pru0.bin $(INSTALL_DIR)/barebone_blink_pru1.bin $(INSTALL_DIR)/pwm_generator.bin


$(INSTALL_DIR)/%.bin: %.pasm
	$(PRU_ASM) $(ASM_FLAGS) $< $(INSTALL_DIR)/$*