Correction warning Intellisense + appel fonction reset pour les leds dans le main()
This commit is contained in:
parent
e40f285438
commit
41507f1227
4
.vscode/c_cpp_properties.json
vendored
4
.vscode/c_cpp_properties.json
vendored
@ -2,6 +2,7 @@
|
|||||||
"env": {
|
"env": {
|
||||||
"myDefaultIncludePath": [
|
"myDefaultIncludePath": [
|
||||||
"${workspaceFolder}",
|
"${workspaceFolder}",
|
||||||
|
"${workspaceFolder}/build",
|
||||||
"${env:PICO_SDK_PATH}/src/./common/pico_binary_info/include",
|
"${env:PICO_SDK_PATH}/src/./common/pico_binary_info/include",
|
||||||
"${env:PICO_SDK_PATH}/src/./common/pico_base/include",
|
"${env:PICO_SDK_PATH}/src/./common/pico_base/include",
|
||||||
"${env:PICO_SDK_PATH}/src/./common/pico_time/include",
|
"${env:PICO_SDK_PATH}/src/./common/pico_time/include",
|
||||||
@ -73,7 +74,8 @@
|
|||||||
"name": "Linux",
|
"name": "Linux",
|
||||||
"intelliSenseMode": "linux-gcc-arm",
|
"intelliSenseMode": "linux-gcc-arm",
|
||||||
"includePath": [
|
"includePath": [
|
||||||
"${myDefaultIncludePath}"
|
"${myDefaultIncludePath}",
|
||||||
|
"${workspaceFolder}/build/"
|
||||||
],
|
],
|
||||||
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
|
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
|
||||||
"cStandard": "c11",
|
"cStandard": "c11",
|
||||||
|
13
main.c
13
main.c
@ -149,12 +149,15 @@ void main(void)
|
|||||||
uint8_t couleur = tampon_commande_led[0];
|
uint8_t couleur = tampon_commande_led[0];
|
||||||
uint16_t masque_led = (tampon_commande_led[1] << 8) | tampon_commande_led[2];
|
uint16_t masque_led = (tampon_commande_led[1] << 8) | tampon_commande_led[2];
|
||||||
|
|
||||||
for(uint8_t led=0; led < 12; led++){
|
if (masque_led == 0){
|
||||||
if((masque_led >> led) & 0x01){
|
// Commande pour repasser les led en mode distance
|
||||||
|
reset_affichage_led();
|
||||||
ws2812_set_buffer_8bits(couleur, led);
|
}else{
|
||||||
|
for(uint8_t led=0; led < 12; led++){
|
||||||
|
if((masque_led >> led) & 0x01){
|
||||||
|
affiche_couleur_sur_led(couleur, led);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user