|
1 | 1 | // aoapps_mngr.cpp - apps manager (records the entry functions associated with all registered apps) |
2 | 2 | /***************************************************************************** |
3 | | - * Copyright 2024 by ams OSRAM AG * |
| 3 | + * Copyright 2024-2026 by ams OSRAM AG * |
4 | 4 | * All rights are reserved. * |
5 | 5 | * * |
6 | 6 | * IMPORTANT - PLEASE READ CAREFULLY BEFORE COPYING, INSTALLING OR USING * |
@@ -566,13 +566,13 @@ static void aoapps_mngr_cmd_listone(int appix) { |
566 | 566 | if( aoapps_mngr_apps[appix].flags & AOAPPS_MNGR_FLAGS_WITHREPAIR ) flags[2]='R'; |
567 | 567 | if( aoapps_mngr_apps[appix].flags & AOAPPS_MNGR_FLAGS_NEXTONERR ) flags[3]='E'; |
568 | 568 | const char* oled= aoapps_mngr_app_oled(appix); |
569 | | - Serial.printf("%1d %-10s %-4s %-5s %s\n",appix,name,mode,flags,oled); |
| 569 | + Serial.printf("%1d %-12s %-4s %-5s %s\n",appix,name,mode,flags,oled); |
570 | 570 | } |
571 | 571 |
|
572 | 572 |
|
573 | 573 | // Lists all apps (with status) |
574 | 574 | static void aoapps_mngr_cmd_listall(int verbose) { |
575 | | - if( verbose ) Serial.printf("# %-10s %-4s %5s %s\n","name","mode","flags","display name"); |
| 575 | + if( verbose ) Serial.printf("# %-12s %-4s %5s %s\n","name","mode","flags","display name"); |
576 | 576 | for( int appix=0; appix<aoapps_mngr_app_count(); appix++ ) |
577 | 577 | aoapps_mngr_cmd_listone(appix); |
578 | 578 | if( verbose ) Serial.printf("\nflags: H=hidden T=withtopo R=withrepair, E=nextonerr\n"); |
|
0 commit comments