Files
paparazzi/conf/boards/pc.makefile
T
Michal Podhradsky c072a5405c Corroded Paparazzi (#2355)
* Update AggieAir config

* Show total heap free space

* Conf fixes

* Initial commit of corroded paparazzi

* Added RNG support for ChibiOS

* Better build process for RUST modules

* Better description

* Fix typo

* Compile demo module for both NPS and AP targets, some rust magic had to happen

* Note in makefile

* Cleaner building of Rust modules

* Remove excess aiframes

* Prep work for enabling RNG on ChibiOS + STM32F4. Need to write a driver for ChibiOS-Contrib, so I am leaving that part for later

* RNG driver will eventually be a part of ChibiOS proper, hence simplify  the ifdef guards

* Clean up modules

* Changes in the rust builds

* Remove unsupported RNG for ChibiOS

* Better separate compatibility packages

* Minor fixes

* Fix halconf.h
2018-12-13 14:19:08 +01:00

25 lines
331 B
Makefile

#
# pc.makefile
#
# Linux PC
#
ARCH=sim
BOARD = pc
BOARD_VERSION=
# specify host platform for Rust builds
UNAME = $(shell uname -s)
ifeq ("$(UNAME)","Darwin")
RUST_ARCH = x86_64-apple-darwin
else
RUST_ARCH = x86_64-unknown-linux-gnu
endif
BOARD_CFG = \"boards/pc_sim.h\"
$(TARGET).ARCHDIR = $(ARCH)
MODEM_HOST ?= 127.0.0.1