[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[paparazzi-commits] [paparazzi/paparazzi] 0e3a6c: [generators] always pu
From: |
GitHub |
Subject: |
[paparazzi-commits] [paparazzi/paparazzi] 0e3a6c: [generators] always put configure options at begin... |
Date: |
Wed, 13 Jan 2016 12:35:05 -0800 |
Branch: refs/heads/gen_configure
Home: https://github.com/paparazzi/paparazzi
Commit: 0e3a6c93a07ff039b198938b7425f096980b1cac
https://github.com/paparazzi/paparazzi/commit/0e3a6c93a07ff039b198938b7425f096980b1cac
Author: Felix Ruess <address@hidden>
Date: 2016-01-13 (Wed, 13 Jan 2016)
Changed paths:
M sw/tools/generators/gen_aircraft.ml
Log Message:
-----------
[generators] always put configure options at beginning
put all makefile vars (specified via configure) before including the board
makefile.
e.g. RADIO_CONTROL_PPM_PIN has moved to the board makefile, and this
```
<subsystem name="radio_control" type="ppm">
<configure name="RADIO_CONTROL_PPM_PIN" value="UART1_RX"/>
</subsystem>
```
was not working anymore and instead it was necessary to move the configure line
outside of the subsystem lines:
```
<subsystem name="radio_control" type="ppm"/>
<configure name="RADIO_CONTROL_PPM_PIN" value="UART1_RX"/>
```
This should fix that regression again.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [paparazzi-commits] [paparazzi/paparazzi] 0e3a6c: [generators] always put configure options at begin...,
GitHub <=