[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[paparazzi-commits] [paparazzi/paparazzi] 6679c1: [generators] always pu
From: |
GitHub |
Subject: |
[paparazzi-commits] [paparazzi/paparazzi] 6679c1: [generators] always put configure options at begin... |
Date: |
Thu, 14 Jan 2016 02:48:58 -0800 |
Branch: refs/heads/master
Home: https://github.com/paparazzi/paparazzi
Commit: 6679c1eb179508e3830b64960dd4021f3d8ed106
https://github.com/paparazzi/paparazzi/commit/6679c1eb179508e3830b64960dd4021f3d8ed106
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.
Commit: d6f35c2aa635c0e80a4b3e0c72aad1e618555b12
https://github.com/paparazzi/paparazzi/commit/d6f35c2aa635c0e80a4b3e0c72aad1e618555b12
Author: Gautier Hattenberger <address@hidden>
Date: 2016-01-14 (Thu, 14 Jan 2016)
Changed paths:
M sw/tools/generators/gen_aircraft.ml
Log Message:
-----------
Merge pull request #1517 from paparazzi/gen_configure
[generators] always put configure options at beginning
Compare:
https://github.com/paparazzi/paparazzi/compare/c000dd920c43...d6f35c2aa635