paparazzi-commits
[Top][All Lists]
Advanced

[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: Wed, 13 Jan 2016 13:47:47 -0800

  Branch: refs/heads/gen_configure
  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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]