Skip to content

Commit

Permalink
Merge pull request #1316 from spark/fix/led_clear_network_cred
Browse files Browse the repository at this point in the history
Fix LED indication when clearing network credentials
  • Loading branch information
technobly committed May 4, 2017
2 parents ef6c8e3 + d291e73 commit 10cdcbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/src/system_network_internal.h
Expand Up @@ -244,7 +244,7 @@ class ManagedNetworkInterface : public NetworkInterface
{
// Get base color used for the listening mode indication
const LEDStatusData* status = led_signal_status(LED_SIGNAL_LISTENING_MODE, nullptr);
LEDStatus led(status ? status->color : RGB_COLOR_BLUE, LED_PRIORITY_IMPORTANT);
LEDStatus led(status ? status->color : RGB_COLOR_BLUE, LED_PRIORITY_CRITICAL);
led.setActive();
int toggle = 25;
while (toggle--)
Expand Down

0 comments on commit 10cdcbf

Please sign in to comment.