mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
c072a5405c
* 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
25 lines
331 B
Makefile
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
|
|
|