File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
libraries/Bluefruit52Lib/src Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -580,12 +580,22 @@ void AdafruitBluefruit::setConnLedInterval(uint32_t ms)
580
580
if ( !active ) xTimerStop (_led_blink_th, 0 );
581
581
}
582
582
583
- bool AdafruitBluefruit::setApperance (uint16_t appear)
583
+ bool AdafruitBluefruit::setApperance (uin16_t appear)
584
+ {
585
+ setAppearance (appear);
586
+ }
587
+
588
+ bool AdafruitBluefruit::setAppearance (uint16_t appear)
584
589
{
585
590
return ERROR_NONE == sd_ble_gap_appearance_set (appear);
586
591
}
587
592
588
- uint16_t AdafruitBluefruit::getApperance (void )
593
+ bool AdafruitBluefruit::getApperance (void )
594
+ {
595
+ getAppearance (void );
596
+ }
597
+
598
+ uint16_t AdafruitBluefruit::getAppearance (void )
589
599
{
590
600
uint16_t appear = 0 ;
591
601
(void ) sd_ble_gap_appearance_get (&appear);
You can’t perform that action at this time.
0 commit comments