Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[generators] always put configure options at beginning#1517

Merged
gautierhattenberger merged 1 commit into
masterfrom
gen_configure
Jan 14, 2016
Merged

[generators] always put configure options at beginning#1517
gautierhattenberger merged 1 commit into
masterfrom
gen_configure

Conversation

@flixr

@flixr flixr commented Jan 13, 2016

Copy link
Copy Markdown
Member

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.

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.
gautierhattenberger added a commit that referenced this pull request Jan 14, 2016
[generators] always put configure options at beginning
@gautierhattenberger gautierhattenberger merged commit d6f35c2 into master Jan 14, 2016
@flixr flixr deleted the gen_configure branch January 14, 2016 11:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants