diff --git a/.github/workflows/win-cpn-32.yml b/.github/workflows/win-cpn-32.yml index a84903fac07..5a853ab7778 100644 --- a/.github/workflows/win-cpn-32.yml +++ b/.github/workflows/win-cpn-32.yml @@ -65,10 +65,18 @@ jobs: mingw-w64-i686-clang \ mingw-w64-i686-nsis pip install Pillow clang - + + - name: Cache Qt + id: cache-qt + uses: actions/cache@v1 # not v2! + with: + path: ../Qt + key: win32-QtCache + - name: Install Qt uses: jurplel/install-qt-action@v2 with: + cached: ${{ steps.cache-qt.outputs.cache-hit }} version: ${{ env.QT_VERSION }} arch: ${{ env.MINGW_VERSION }} diff --git a/.github/workflows/win_cpn.yml b/.github/workflows/win_cpn.yml index 7c579b3c070..68806737dac 100644 --- a/.github/workflows/win_cpn.yml +++ b/.github/workflows/win_cpn.yml @@ -68,10 +68,18 @@ jobs: mingw-w64-x86_64-clang \ mingw-w64-x86_64-nsis pip install Pillow clang - + + - name: Cache Qt + id: cache-qt + uses: actions/cache@v1 # not v2! + with: + path: ../Qt + key: win64-QtCache + - name: Install Qt uses: jurplel/install-qt-action@v2 with: + cached: ${{ steps.cache-qt.outputs.cache-hit }} version: ${{ env.QT_VERSION }} arch: ${{ env.MINGW_VERSION }} diff --git a/radio/src/cli.cpp b/radio/src/cli.cpp index 6d36d908862..fe984588b37 100644 --- a/radio/src/cli.cpp +++ b/radio/src/cli.cpp @@ -1057,56 +1057,6 @@ void printInterrupts() } #endif //#if defined(DEBUG_INTERRUPTS) -#if defined(DEBUG_TASKS) -void printTaskSwitchLog() -{ - serialPrint("Tasks legend [, ]:"); - for(int n = 0; n <= CFG_MAX_USER_TASKS+1; n++) { - if (0 == n) { - serialPrint("%d: Idle", n); - } - if (cliTaskId == n) { - serialPrint("%d: CLI", n); - } - else if (menusTaskId == n) { - serialPrint("%d: menus", n); - } - else if (mixerTaskId == n) { - serialPrint("%d: mixer", n); - } - else if (audioTaskId == n) { - serialPrint("%d: audio", n); - } - } - serialCrlf(); - - serialPrint("Tasks switch log at %u [