Added workflow build badge to readme - release

This commit is contained in:
Sébastien
2020-11-17 14:05:48 -05:00
committed by Sebastien
parent c82ae71726
commit ede495a145
2 changed files with 6 additions and 5 deletions

View File

@@ -450,16 +450,16 @@ const set_GPIO_struct_t * get_gpio_struct(){
}
#ifdef CONFIG_LED_LOCKED
gpio_struct.red.locked=true;
gpio_struct.green.locked=true;
gpio_struct.red.fixed=true;
gpio_struct.green.fixed=true;
#endif
#ifdef CONFIG_JACK_LOCKED
gpio_struct.jack.gpio=CONFIG_JACK_GPIO
#ifdef CONFIG_JACK_LOCKED
gpio_struct.jack.gpio=CONFIG_JACK_GPIO;
gpio_struct.jack.fixed=true;
gpio_struct.jack.level=CONFIG_JACK_GPIO_LEVEL;
#endif
#ifdef CONFIG_SPKFAULT_LOCKED
gpio_struct.spkfault.gpio=CONFIG_SPKFAULT_GPIO
gpio_struct.spkfault.gpio=CONFIG_SPKFAULT_GPIO;
gpio_struct.spkfault.fixed=true;
gpio_struct.spkfault.level=CONFIG_SPKFAULT_GPIO_LEVEL;
#endif