On Fri, Jan 13, 2017 at 11:35:13AM -0500, David G. Simmons wrote:
> Here's the entire syscfg.yml file:
>
> ### Package: targets/air_q
>
> syscfg.vals:
> OPENOCD_DEBUG: 1
> # Enable the shell task.
> SHELL_TASK: 1
> STATS_CLI: 1
>
> CONSOLE_TICKS: 1
> CONSOLE_PROMPT: 1
>
> UART_0_PIN_TX:
> description: 'New Pin Assignment'
> value: 23
> UART_0_PIN_RX:
> description: 'New Pin Assignment'
> value: 24
>
> So I was trying to override them in the syscfg.vals section. And that is what
> fails. the old value from the package's syscfg.yml is removed, but the new
> value isn't substituted in its place.
The last two entries should look like this:
UART_0_PIN_TX: 23
UART_0_PIN_RX: 24
I think this will be a common mistake, so we should look at making newt
report an error here.
Thanks,
Chris