paparazzi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paparazzi-commits] [paparazzi/paparazzi] 83ba28: [generators] always pu


From: GitHub
Subject: [paparazzi-commits] [paparazzi/paparazzi] 83ba28: [generators] always put configure options at begin...
Date: Thu, 14 Jan 2016 03:26:25 -0800

  Branch: refs/heads/v5.8
  Home:   https://github.com/paparazzi/paparazzi
  Commit: 83ba28a23a8686ff53ca166970ce7a27efe09d87
      
https://github.com/paparazzi/paparazzi/commit/83ba28a23a8686ff53ca166970ce7a27efe09d87
  Author: Felix Ruess <address@hidden>
  Date:   2016-01-14 (Thu, 14 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]