Mercurial > public > ostc4
comparison Discovery/Src/tMenu.c @ 788:4abfb8a2a435
Define explicit setpoints for low / high / deco. Add an option to delay the switch to SPlow until all decompression has been cleared. (mikeller)
author | heinrichsweikamp |
---|---|
date | Tue, 04 Jul 2023 14:39:06 +0200 |
parents | 6169309d6eb9 |
children | 4c41d9a18c7f |
comparison
equal
deleted
inserted
replaced
787:aeb72882f30a | 788:4abfb8a2a435 |
---|---|
555 tM_build_page(id, text, tabPosition, subtext); | 555 tM_build_page(id, text, tabPosition, subtext); |
556 | 556 |
557 id = tMCG_refresh(0, text, &tabPosition, subtext); | 557 id = tMCG_refresh(0, text, &tabPosition, subtext); |
558 tM_build_page(id, text, tabPosition, subtext); | 558 tM_build_page(id, text, tabPosition, subtext); |
559 | 559 |
560 id = tMSP_refresh(0, text, &tabPosition, subtext); | 560 id = tMSP_refresh(text, &tabPosition, subtext); |
561 tM_build_page(id, text, tabPosition, subtext); | 561 tM_build_page(id, text, tabPosition, subtext); |
562 | 562 |
563 id = tMXtra_refresh(0, text, &tabPosition, subtext); | 563 id = tMXtra_refresh(0, text, &tabPosition, subtext); |
564 tM_build_page(id, text, tabPosition, subtext); | 564 tM_build_page(id, text, tabPosition, subtext); |
565 | 565 |
673 case StMCG: | 673 case StMCG: |
674 tMCG_refresh(0, text, &tabPosition, subtext); | 674 tMCG_refresh(0, text, &tabPosition, subtext); |
675 update_content_with_new_frame(page, text, tabPosition, subtext); | 675 update_content_with_new_frame(page, text, tabPosition, subtext); |
676 break; | 676 break; |
677 case StMSP: | 677 case StMSP: |
678 tMSP_refresh(0, text, &tabPosition, subtext); | 678 tMSP_refresh(text, &tabPosition, subtext); |
679 update_content_with_new_frame(page, text, tabPosition, subtext); | 679 update_content_with_new_frame(page, text, tabPosition, subtext); |
680 break; | 680 break; |
681 default: | 681 default: |
682 break; | 682 break; |
683 } | 683 } |
708 case StMCG: | 708 case StMCG: |
709 tMCG_refresh(0, text, &tabPosition, subtext); | 709 tMCG_refresh(0, text, &tabPosition, subtext); |
710 update_content_with_new_frame(page, text, tabPosition, subtext); | 710 update_content_with_new_frame(page, text, tabPosition, subtext); |
711 break; | 711 break; |
712 case StMSP: | 712 case StMSP: |
713 tMSP_refresh(0, text, &tabPosition, subtext); | 713 tMSP_refresh(text, &tabPosition, subtext); |
714 update_content_with_new_frame(page, text, tabPosition, subtext); | 714 update_content_with_new_frame(page, text, tabPosition, subtext); |
715 break; | 715 break; |
716 case StMXTRA: | 716 case StMXTRA: |
717 tMXtra_refresh(0, text, &tabPosition, subtext); | 717 tMXtra_refresh(0, text, &tabPosition, subtext); |
718 update_content_with_new_frame(page, text, tabPosition, subtext); | 718 update_content_with_new_frame(page, text, tabPosition, subtext); |