ci(ubuntu): ci use ubuntu24.04 (#6241)

Signed-off-by: lhdjply <lhdjply@126.com>
This commit is contained in:
Liu Yi
2025-03-07 17:47:17 +08:00
committed by GitHub
parent 346395d039
commit cb8ac4df4f
86 changed files with 1412 additions and 1451 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ concurrency:
jobs: jobs:
lint: lint:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v2 - uses: arduino/arduino-lint-action@v2
+51 -13
View File
@@ -14,13 +14,16 @@ jobs:
build: build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
name: Build ${{ matrix.port }} port name: Build ${{ matrix.port }} port
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
continue-on-error: true continue-on-error: true
strategy: strategy:
matrix: matrix:
port: ['unix', 'esp32', 'stm32', 'rp2'] port: ['unix', 'stm32', 'rp2']
steps: steps:
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Dependencies - name: Install Dependencies
run: | run: |
sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse" sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
@@ -34,7 +37,7 @@ jobs:
- name: Initialize lv_bindings submodule - name: Initialize lv_bindings submodule
run: git submodule update --init --recursive lib/lv_bindings run: git submodule update --init --recursive lib/lv_bindings
- name: Update ${{ matrix.port }} port submodules - name: Update ${{ matrix.port }} port submodules
if: matrix.port != 'esp32' && matrix.port != 'rp2' if: matrix.port != 'rp2'
run: make -C ports/${{ matrix.port }} DEBUG=1 USER_C_MODULES=../../lib/lv_bindings/bindings.cmake submodules run: make -C ports/${{ matrix.port }} DEBUG=1 USER_C_MODULES=../../lib/lv_bindings/bindings.cmake submodules
- name: Checkout LVGL submodule - name: Checkout LVGL submodule
working-directory: ./lib/lv_bindings/lvgl working-directory: ./lib/lv_bindings/lvgl
@@ -46,16 +49,6 @@ jobs:
- name: Build mpy-cross - name: Build mpy-cross
run: make -j $(nproc) -C mpy-cross run: make -j $(nproc) -C mpy-cross
# ESP32 port
- name: Setup ESP-IDF
if: matrix.port == 'esp32'
run: |
source tools/ci.sh && ci_esp32_idf44_setup
- name: Build ESP32 port
if: matrix.port == 'esp32'
run: |
source tools/ci.sh && ci_esp32_build
# STM32 & RPi Pico port # STM32 & RPi Pico port
- name: arm-none-eabi-gcc - name: arm-none-eabi-gcc
if: matrix.port == 'stm32' || matrix.port == 'rp2' if: matrix.port == 'stm32' || matrix.port == 'rp2'
@@ -89,3 +82,48 @@ jobs:
with: with:
name: test-artifacts name: test-artifacts
path: lib/lv_bindings/lvgl/tests/micropy_test/artifacts path: lib/lv_bindings/lvgl/tests/micropy_test/artifacts
build-esp32:
runs-on: ubuntu-22.04
name: Build esp32 port
continue-on-error: true
steps:
- uses: ammaraskar/gcc-problem-matcher@master
- name: Install Dependencies
run: |
sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
sudo apt-get update -y -qq
sudo apt-get install libsdl2-dev parallel libfreetype-dev librlottie-dev libavformat-dev libavcodec-dev libswscale-dev libavutil-dev doxygen
python3 -m pip install pycparser
- name: Clone lv_micropython
run: |
git clone https://github.com/lvgl/lv_micropython.git .
git checkout master
- name: Initialize lv_bindings submodule
run: git submodule update --init --recursive lib/lv_bindings
- name: Update ${{ matrix.port }} port submodules
run: make -C ports/esp32 DEBUG=1 USER_C_MODULES=../../lib/lv_bindings/bindings.cmake submodules
- name: Checkout LVGL submodule
working-directory: ./lib/lv_bindings/lvgl
run: |
git fetch --force ${{ github.event.repository.html_url }} "+refs/heads/*:refs/remotes/origin/*"
git fetch --force ${{ github.event.repository.html_url }} "+refs/pull/*:refs/remotes/origin/pr/*"
git checkout ${{ github.sha }} || git checkout ${{ github.event.pull_request.head.sha }}
git submodule update --init --recursive
- name: Build mpy-cross
run: make -j $(nproc) -C mpy-cross
- name: Setup ESP-IDF
run: |
source tools/ci.sh && ci_esp32_idf44_setup
- name: Build ESP32 port
run: |
source tools/ci.sh && ci_esp32_build
- name: Install requirements for the test
run: |
python3 -m pip install pillow
mkdir lib/lv_bindings/lvgl/tests/micropy_test/artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: test-artifacts
path: lib/lv_bindings/lvgl/tests/micropy_test/artifacts
+19 -3
View File
@@ -15,7 +15,7 @@ concurrency:
jobs: jobs:
build-ubuntu: build-ubuntu:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -31,8 +31,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install prerequisites - name: Install prerequisites
run: scripts/install-prerequisites.sh run: scripts/install-prerequisites.sh
- name: Install pngquant
run: scripts/install_pngquant.sh
- name: Building ${{ matrix.build_option }} - name: Building ${{ matrix.build_option }}
run: python tests/main.py --build-option=${{ matrix.build_option }} build --auto-clean run: python tests/main.py --build-option=${{ matrix.build_option }} build --auto-clean
@@ -74,10 +80,14 @@ jobs:
CC: ${{ matrix.compiler }} CC: ${{ matrix.compiler }}
build-esp32s3: build-esp32s3:
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
name: Build ESP IDF ESP32S3 name: Build ESP IDF ESP32S3
container: espressif/idf:v5.3.1 container: espressif/idf:v5.3.1
steps: steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Clone LVGL as a Component - name: Clone LVGL as a Component
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
@@ -90,7 +100,7 @@ jobs:
run: . /opt/esp/idf/export.sh && idf.py build run: . /opt/esp/idf/export.sh && idf.py build
test-native: test-native:
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
strategy: strategy:
matrix: matrix:
# A valid option parameter to the cmake file. # A valid option parameter to the cmake file.
@@ -101,8 +111,14 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install prerequisites - name: Install prerequisites
run: scripts/install-prerequisites.sh run: scripts/install-prerequisites.sh
- name: Install pngquant
run: scripts/install_pngquant.sh
- name: Fix kernel mmap rnd bits - name: Fix kernel mmap rnd bits
# Asan in llvm 14 provided in ubuntu 22.04 is incompatible with # Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
# high-entropy ASLR in much newer kernels that GitHub runners are # high-entropy ASLR in much newer kernels that GitHub runners are
+1 -1
View File
@@ -13,7 +13,7 @@ concurrency:
jobs: jobs:
bom-check: bom-check:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
+2 -2
View File
@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
verify-conf-internal: verify-conf-internal:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.7 python-version: 3.12
- name: Generate lv_conf_internal.h - name: Generate lv_conf_internal.h
run: python lv_conf_internal_gen.py run: python lv_conf_internal_gen.py
working-directory: scripts working-directory: scripts
+1 -1
View File
@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
verify-property-name: verify-property-name:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
+1 -1
View File
@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
verify-formatting: verify-formatting:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs: jobs:
stale: stale:
if: github.repository == 'lvgl/lvgl' if: github.repository == 'lvgl/lvgl'
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- uses: actions/stale@v9 - uses: actions/stale@v9
with: with:
+2 -2
View File
@@ -17,7 +17,7 @@ env:
jobs: jobs:
build-and-deploy: build-and-deploy:
if: github.repository == 'lvgl/lvgl' if: github.repository == 'lvgl/lvgl'
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
concurrency: docs-build-and-deploy concurrency: docs-build-and-deploy
steps: steps:
- name: Checkout - name: Checkout
@@ -28,7 +28,7 @@ jobs:
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.10' python-version: '3.12'
- name: Cache Python packages - name: Cache Python packages
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
+1 -1
View File
@@ -8,7 +8,7 @@ on:
jobs: jobs:
upload_components: upload_components:
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
+2 -2
View File
@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
test_api_json: test_api_json:
if: github.repository == 'lvgl/lvgl' if: github.repository == 'lvgl/lvgl'
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
name: Test API JSON name: Test API JSON
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -20,7 +20,7 @@ jobs:
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.10' python-version: '3.12'
- name: Install Doxygen and Latex dependencies - name: Install Doxygen and Latex dependencies
run: | run: |
+1 -1
View File
@@ -4,7 +4,7 @@ on:
jobs: jobs:
auto_close_issues: auto_close_issues:
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
+5 -1
View File
@@ -15,11 +15,15 @@ concurrency:
jobs: jobs:
build: build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
name: Build using Makefile name: Build using Makefile
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install prerequisites - name: Install prerequisites
run: scripts/install-prerequisites.sh run: scripts/install-prerequisites.sh
- name: Build - name: Build
+5 -1
View File
@@ -15,11 +15,15 @@ concurrency:
jobs: jobs:
build: build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
name: Build using Makefile for UEFI name: Build using Makefile for UEFI
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install prerequisites - name: Install prerequisites
run: scripts/install-prerequisites.sh run: scripts/install-prerequisites.sh
- name: Install clang - name: Install clang
+2 -2
View File
@@ -6,14 +6,14 @@ on:
name: PlatformIO Publish name: PlatformIO Publish
jobs: jobs:
build: build:
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Python - name: Install Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.9' python-version: '3.12'
- name: Install PlatformIO Core - name: Install PlatformIO Core
run: pip install --upgrade platformio run: pip install --upgrade platformio
- name: Switch to the development version - name: Switch to the development version
+1 -1
View File
@@ -9,7 +9,7 @@ name: Create Release
jobs: jobs:
build: build:
name: Create Release name: Create Release
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
+2 -2
View File
@@ -12,7 +12,7 @@ concurrency:
jobs: jobs:
verify-kconfig: verify-kconfig:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-22.04 runs-on: ubuntu-24.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.7 python-version: 3.12
- name: Check for leading spaces in Kconfig - name: Check for leading spaces in Kconfig
working-directory: . working-directory: .
run: | run: |
+1 -1
View File
@@ -11,7 +11,7 @@ sudo apt install gcc gcc-multilib g++-multilib ninja-build \
libpng-dev libjpeg-turbo8-dev libfreetype6-dev \ libpng-dev libjpeg-turbo8-dev libfreetype6-dev \
libglew-dev libglfw3-dev libsdl2-dev \ libglew-dev libglfw3-dev libsdl2-dev \
libpng-dev:i386 libjpeg-dev:i386 libfreetype6-dev:i386 \ libpng-dev:i386 libjpeg-dev:i386 libfreetype6-dev:i386 \
ruby-full gcovr cmake python3 pngquant libinput-dev libxkbcommon-dev \ ruby-full gcovr cmake python3 libinput-dev libxkbcommon-dev \
libdrm-dev pkg-config wayland-protocols libwayland-dev libwayland-bin \ libdrm-dev pkg-config wayland-protocols libwayland-dev libwayland-bin \
libwayland-dev:i386 libxkbcommon-dev:i386 libwayland-dev:i386 libxkbcommon-dev:i386
pip3 install pypng lz4 kconfiglib pip3 install pypng lz4 kconfiglib
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
rm -rf pngquant
git clone https://github.com/kornelski/pngquant
cd pngquant
git checkout 2.17.0
./configure
make -j
sudo make install
cd ..
rm -rf pngquant
+2 -1
View File
@@ -178,7 +178,8 @@ def generate_code_coverage_report():
os.mkdir('report') os.mkdir('report')
root_dir = os.pardir root_dir = os.pardir
html_report_file = 'report/index.html' html_report_file = 'report/index.html'
cmd = ['gcovr', '--root', root_dir, '--html-details', '--output', cmd = ['gcovr', '--gcov-ignore-parse-errors', 'negative_hits.warn',
'--root', root_dir, '--html-details', '--output',
html_report_file, '--xml', 'report/coverage.xml', html_report_file, '--xml', 'report/coverage.xml',
'-j', str(os.cpu_count()), '--print-summary', '-j', str(os.cpu_count()), '--print-summary',
'--html-title', 'LVGL Test Coverage', '--filter', r'../src/.*/lv_.*\.c'] '--html-title', 'LVGL Test Coverage', '--filter', r'../src/.*/lv_.*\.c']
Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

@@ -20,129 +20,135 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB565A8_LZ4_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB565A8_LZ4_ALIGN1
uint8_t test_RGB565A8_LZ4_align1_map[] = { uint8_t test_RGB565A8_LZ4_align1_map[] = {
0x02,0x00,0x00,0x00,0x9d,0x07,0x00,0x00,0xec,0x31,0x00,0x00,0x2f,0xe0,0x07,0x02, 0x02,0x00,0x00,0x00,0xfd,0x07,0x00,0x00,0xa0,0x32,0x00,0x00,0x2f,0xe0,0x07,0x02,
0x00,0x7b,0x1f,0x00,0x01,0x00,0x76,0x00,0x1a,0x01,0x0f,0x8d,0x00,0x76,0x0f,0x8e, 0x00,0x79,0x5f,0x00,0x00,0xe0,0x07,0x00,0x01,0x00,0x76,0x0f,0x90,0x00,0x97,0x1b,
0x00,0x06,0x1b,0xff,0x01,0x00,0x0f,0xb2,0x00,0x2e,0x1f,0xf8,0x02,0x00,0x0e,0x0f, 0xff,0x01,0x00,0x0f,0x43,0x01,0x2e,0x1f,0xf8,0x02,0x00,0x0e,0x0f,0x20,0x01,0x0a,
0x8e,0x00,0x26,0x1b,0x1f,0x02,0x00,0x0f,0xac,0x00,0x10,0x01,0x6e,0x00,0x0f,0x02, 0x0b,0x8f,0x00,0x0b,0x90,0x00,0x1b,0x1f,0x02,0x00,0x0a,0x1e,0x00,0x0f,0x02,0x00,
0x00,0x08,0x01,0x20,0x00,0x0f,0x1c,0x01,0x1f,0x0a,0x88,0x00,0x06,0x02,0x00,0x08, 0x02,0x01,0x70,0x00,0x0f,0x02,0x00,0x08,0x01,0x20,0x00,0x0f,0xb0,0x01,0x07,0x0f,
0x6a,0x00,0x04,0x16,0x00,0x07,0x14,0x00,0x1f,0xf8,0x20,0x01,0x0a,0x02,0x20,0x00, 0x90,0x00,0x07,0x0a,0x8a,0x00,0x06,0x02,0x00,0x08,0x6c,0x00,0x04,0x16,0x00,0x07,
0x0f,0xaa,0x01,0x1e,0x04,0x68,0x00,0x0f,0x02,0x00,0x01,0x06,0x7c,0x00,0x04,0x1e, 0x14,0x00,0x1f,0xf8,0x24,0x01,0x0a,0x02,0x20,0x00,0x01,0xcc,0x02,0x0f,0xd0,0x02,
0x00,0x06,0x12,0x00,0x06,0x72,0x00,0x0f,0x02,0x00,0x00,0x05,0x1c,0x00,0x0f,0x1c, 0x03,0x0f,0x90,0x00,0x05,0x04,0x6a,0x00,0x0f,0x02,0x00,0x01,0x06,0x7e,0x00,0x04,
0x01,0x1d,0x04,0x68,0x00,0x0f,0x02,0x00,0x01,0x06,0x68,0x00,0x04,0x1e,0x00,0x06, 0x1e,0x00,0x06,0x12,0x00,0x06,0x74,0x00,0x0f,0x02,0x00,0x00,0x05,0x1c,0x00,0x0f,
0x12,0x00,0x05,0x8e,0x00,0x0e,0x3e,0x02,0x0f,0x8e,0x00,0x26,0x04,0x66,0x00,0x0f, 0x20,0x01,0x1f,0x04,0x6a,0x00,0x0f,0x02,0x00,0x01,0x06,0x6a,0x00,0x04,0x1e,0x00,
0x02,0x00,0x05,0x04,0x7e,0x00,0x04,0x20,0x00,0x04,0x10,0x00,0x09,0x8e,0x00,0x01, 0x06,0x12,0x00,0x05,0x90,0x00,0x0e,0x46,0x02,0x0f,0x90,0x00,0x28,0x04,0x68,0x00,
0x0f,0x00,0x05,0x02,0x00,0x0f,0x8e,0x00,0x50,0x0f,0x02,0x00,0x00,0x08,0x76,0x00, 0x0f,0x02,0x00,0x05,0x04,0x80,0x00,0x04,0x20,0x00,0x04,0x10,0x00,0x09,0x90,0x00,
0x06,0x20,0x01,0x0a,0x18,0x00,0x0f,0x38,0x02,0x1c,0x04,0xf4,0x00,0x0f,0x02,0x00, 0x01,0x0f,0x00,0x05,0x02,0x00,0x0f,0x90,0x00,0x52,0x0f,0x02,0x00,0x00,0x08,0x78,
0x05,0x0f,0x86,0x00,0x00,0x04,0x02,0x00,0x0d,0x7a,0x00,0x0b,0x30,0x01,0x01,0x34, 0x00,0x06,0x24,0x01,0x0a,0x18,0x00,0x0f,0x40,0x02,0x1e,0x04,0xf8,0x00,0x0f,0x02,
0x01,0x04,0x38,0x02,0x0b,0x5f,0x04,0x11,0xff,0x2e,0x00,0x0d,0x02,0x00,0x0f,0x86, 0x00,0x05,0x0f,0x88,0x00,0x00,0x04,0x02,0x00,0x0d,0x7c,0x00,0x0b,0x34,0x01,0x01,
0x00,0x05,0x04,0x02,0x00,0x02,0x31,0x00,0x04,0x0e,0x00,0x06,0x12,0x00,0x0f,0x7a, 0x38,0x01,0x06,0x40,0x02,0x0f,0xc0,0x02,0x05,0x0a,0x02,0x00,0x0f,0x88,0x00,0x05,
0x00,0x00,0x0c,0x9e,0x00,0x0f,0x8e,0x00,0x44,0x02,0x86,0x00,0x06,0x02,0x00,0x01, 0x04,0x02,0x00,0x02,0x2e,0x00,0x04,0x0e,0x00,0x06,0x12,0x00,0x0f,0x7c,0x00,0x00,
0x8c,0x00,0x02,0x6e,0x00,0x08,0x82,0x00,0x0f,0x14,0x00,0x02,0x0f,0x1c,0x01,0x3f, 0x0c,0xa0,0x00,0x0f,0x90,0x00,0x46,0x02,0x88,0x00,0x06,0x02,0x00,0x01,0x8e,0x00,
0x06,0x88,0x00,0x02,0x02,0x00,0x02,0x79,0x00,0x07,0x54,0x03,0x0f,0x38,0x02,0x10, 0x02,0x70,0x00,0x08,0x84,0x00,0x0f,0x14,0x00,0x02,0x0f,0x20,0x01,0x41,0x06,0x8a,
0x0f,0xaa,0x01,0x37,0x02,0x84,0x00,0x06,0x02,0x00,0x0f,0x8e,0x00,0x00,0x08,0x02, 0x00,0x02,0x02,0x00,0x02,0x7b,0x00,0x07,0x60,0x03,0x0f,0x40,0x02,0x12,0x0f,0xb0,
0x00,0x02,0x9e,0x00,0x02,0x08,0x00,0x05,0xc6,0x02,0x0f,0x8e,0x00,0x58,0x0c,0x02, 0x01,0x37,0x02,0x86,0x00,0x06,0x02,0x00,0x0f,0x90,0x00,0x00,0x08,0x02,0x00,0x02,
0x00,0x02,0x8a,0x00,0x0f,0x38,0x02,0x20,0x0e,0xfa,0x00,0x08,0x02,0x00,0x02,0xf3, 0xa0,0x00,0x02,0x08,0x00,0x07,0xd0,0x02,0x0f,0x90,0x00,0x58,0x0c,0x02,0x00,0x02,
0x00,0x08,0x12,0x00,0x07,0xc8,0x02,0x04,0x76,0x00,0x0f,0x02,0x00,0x01,0x05,0x1c, 0x8c,0x00,0x0f,0x40,0x02,0x22,0x0e,0xfe,0x00,0x08,0x02,0x00,0x02,0xf7,0x00,0x08,
0x00,0x0f,0x38,0x02,0x1b,0x0e,0x6c,0x00,0x08,0x02,0x00,0x02,0x69,0x00,0x08,0x12, 0x12,0x00,0x07,0xd2,0x02,0x04,0x78,0x00,0x0f,0x02,0x00,0x01,0x05,0x1c,0x00,0x0f,
0x00,0x0d,0x8e,0x00,0x0f,0x02,0x00,0x05,0x02,0x92,0x00,0x0f,0xaa,0x01,0x1c,0x0f, 0x40,0x02,0x1d,0x0e,0x6e,0x00,0x08,0x02,0x00,0x02,0x6b,0x00,0x08,0x12,0x00,0x0d,
0x90,0x00,0x09,0x02,0x1e,0x00,0x0c,0x22,0x00,0x02,0x12,0x00,0x03,0xc6,0x02,0x0f, 0x90,0x00,0x0f,0x02,0x00,0x05,0x02,0x94,0x00,0x0f,0xb0,0x01,0x1e,0x0f,0x92,0x00,
0x02,0x00,0x09,0x09,0xaa,0x01,0x0f,0x02,0x00,0x1b,0x02,0xf6,0x00,0x06,0x02,0x00, 0x09,0x02,0x1e,0x00,0x0c,0x22,0x00,0x02,0x12,0x00,0x03,0xd0,0x02,0x0f,0x02,0x00,
0x0f,0x3e,0x00,0x10,0x0f,0x16,0x01,0x05,0x06,0x02,0x00,0x07,0x1c,0x01,0x0f,0x02, 0x09,0x0b,0xb0,0x01,0x0f,0x02,0x00,0x1b,0x02,0xfa,0x00,0x06,0x02,0x00,0x0f,0x3e,
0x00,0x73,0x04,0x38,0x02,0x0f,0x02,0x00,0x73,0x0f,0x8e,0x00,0xff,0xff,0xff,0xff, 0x00,0x10,0x0f,0x1a,0x01,0x05,0x06,0x02,0x00,0x09,0x20,0x01,0x0f,0x02,0x00,0x73,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x18,0xff,0x2d,0xfe,0x07,0xfc,0x07,0xfa,0x07, 0x06,0x40,0x02,0x0f,0x02,0x00,0x73,0x0f,0x90,0x00,0xff,0xff,0xff,0xff,0xff,0xff,
0xf8,0x07,0xf6,0x07,0xf4,0x07,0xf2,0x07,0xef,0x07,0xed,0x07,0xeb,0x07,0xe9,0x07, 0xff,0xff,0xff,0xff,0xff,0x42,0xff,0x2d,0xfe,0x07,0xfc,0x07,0xfa,0x07,0xf8,0x07,
0xe7,0x07,0xe5,0x07,0xe2,0x07,0xe0,0x07,0xe0,0x0f,0xe0,0x27,0xe0,0x37,0xe0,0x47, 0xf6,0x07,0xf4,0x07,0xf2,0x07,0xef,0x07,0xed,0x07,0xeb,0x07,0xe9,0x07,0xe7,0x07,
0xe0,0x57,0xe0,0x67,0xe0,0x77,0xe0,0x87,0xe0,0x9f,0xe0,0xaf,0xe0,0xbf,0xe0,0xcf, 0xe5,0x07,0xe2,0x07,0xe0,0x07,0xe0,0x0f,0xe0,0x27,0xe0,0x37,0xe0,0x47,0xe0,0x57,
0xe0,0xdf,0xe0,0xef,0xe0,0xff,0x02,0x00,0x2f,0x04,0x24,0x0c,0x04,0xa6,0x0b,0x08, 0xe0,0x67,0xe0,0x77,0xe0,0x87,0xe0,0x9f,0xe0,0xaf,0xe0,0xbf,0xe0,0xcf,0xe0,0xdf,
0x8e,0x00,0x1f,0xf1,0x8e,0x00,0xff,0x09,0x0f,0xaa,0x01,0x7b,0x0f,0x8e,0x00,0xff, 0xe0,0xef,0xe0,0xff,0x02,0x00,0x2f,0x04,0x4e,0x0c,0x06,0xd0,0x0b,0x08,0x90,0x00,
0x98,0x08,0x54,0x03,0x1f,0xe4,0xe2,0x03,0x7a,0x0f,0x8e,0x00,0xff,0x08,0x1f,0xe6, 0x1f,0xf1,0x90,0x00,0xff,0x0d,0x0f,0xb0,0x01,0x7d,0x0f,0x90,0x00,0xff,0x9e,0x08,
0x1c,0x01,0x70,0x06,0xe2,0x03,0x0f,0x8e,0x00,0x71,0x06,0xc6,0x02,0x0f,0x8e,0x00, 0x60,0x03,0x1f,0xe4,0xf0,0x03,0x7c,0x0f,0x90,0x00,0xff,0x0c,0x1f,0xe6,0x20,0x01,
0x71,0x04,0x1c,0x01,0x1f,0xe8,0x8e,0x00,0x66,0x0f,0x02,0x00,0x73,0x04,0xc4,0x07, 0x72,0x06,0xf0,0x03,0x0f,0x90,0x00,0x73,0x06,0xd0,0x02,0x0f,0x90,0x00,0x73,0x04,
0x0f,0x02,0x00,0x73,0x0f,0x8e,0x00,0x7f,0x0f,0x02,0x00,0x79,0x0c,0xf0,0x18,0x0f, 0x20,0x01,0x1f,0xe8,0x90,0x00,0x68,0x0f,0x02,0x00,0x73,0x06,0xe0,0x07,0x0f,0x02,
0x02,0x00,0x25,0x0f,0xec,0x01,0x32,0x0f,0x47,0x00,0x38,0x0c,0xc8,0x00,0x0f,0xa0, 0x00,0x73,0x0f,0x90,0x00,0x83,0x0f,0x02,0x00,0x79,0x0e,0x4a,0x19,0x0f,0x02,0x00,
0x00,0x0d,0x0c,0x30,0x00,0x12,0xff,0x8e,0x00,0x0c,0x17,0x00,0x03,0x47,0x00,0x83, 0x24,0x1b,0x00,0xa3,0x1f,0x0f,0x02,0x00,0x24,0x0f,0x48,0x00,0x3a,0x0c,0xcb,0x00,
0x3f,0x96,0xd6,0xf9,0xf9,0xd6,0x96,0x3f,0x0f,0x00,0x06,0x02,0x00,0x0c,0x68,0x1c, 0x0f,0x94,0x00,0x0d,0x0c,0x30,0x00,0x13,0xff,0x90,0x00,0x0c,0x18,0x00,0x03,0x48,
0x0f,0x47,0x00,0x09,0x24,0x1a,0x93,0x5e,0x00,0x22,0x93,0x1a,0x42,0x00,0x41,0x6a, 0x00,0x83,0x3f,0x96,0xd6,0xf9,0xf9,0xd6,0x96,0x3f,0x0f,0x00,0x06,0x02,0x00,0x0c,
0xdf,0xdf,0x6a,0x0a,0x00,0x24,0xff,0x00,0x1b,0x00,0x01,0x02,0x00,0x0f,0x47,0x00, 0x0b,0x01,0x0f,0x48,0x00,0x0a,0x24,0x1a,0x93,0x5f,0x00,0x22,0x93,0x1a,0x43,0x00,
0x09,0x21,0x1a,0xa7,0x23,0x00,0x01,0x02,0x00,0x12,0xa7,0x48,0x00,0x44,0xdf,0xff, 0x41,0x6a,0xdf,0xdf,0x6a,0x0a,0x00,0x24,0xff,0x00,0x1b,0x00,0x01,0x02,0x00,0x0f,
0xff,0xdf,0x47,0x00,0x01,0x08,0x00,0x02,0x02,0x00,0x0f,0x47,0x00,0x0a,0x05,0x8c, 0x48,0x00,0x0a,0x21,0x1a,0xa7,0x24,0x00,0x01,0x02,0x00,0x12,0xa7,0x49,0x00,0x44,
0x00,0x51,0xff,0xff,0xff,0xff,0x93,0x31,0x00,0x09,0x47,0x00,0x02,0x19,0x00,0x02, 0xdf,0xff,0xff,0xdf,0x48,0x00,0x01,0x08,0x00,0x02,0x02,0x00,0x01,0x63,0x01,0x02,
0x8c,0x00,0x0f,0x8e,0x00,0x07,0x11,0x3f,0x23,0x00,0x05,0x02,0x00,0x01,0x20,0x01, 0x05,0x00,0x01,0x2e,0x00,0x06,0x02,0x00,0x45,0x00,0x00,0x00,0x00,0x8e,0x00,0x51,
0x08,0xd5,0x00,0x05,0x90,0x00,0x03,0x0c,0x00,0x11,0xff,0x4b,0x00,0x0a,0x02,0x00, 0xff,0xff,0xff,0xff,0x93,0x32,0x00,0x09,0x48,0x00,0x02,0x19,0x00,0x02,0x8e,0x00,
0x4a,0x00,0x00,0x00,0x96,0x12,0x00,0x11,0x96,0x8f,0x00,0x04,0x02,0x00,0x02,0x3b, 0x0f,0x90,0x00,0x08,0x11,0x3f,0x24,0x00,0x05,0x02,0x00,0x01,0x24,0x01,0x08,0xd8,
0x00,0x01,0x22,0x00,0x01,0x45,0x00,0x01,0x43,0x00,0x0f,0xaa,0x01,0x02,0x11,0xd6, 0x00,0x05,0x92,0x00,0x03,0x0c,0x00,0x02,0x4d,0x00,0x05,0x30,0x00,0x02,0x02,0x00,
0x25,0x00,0x05,0x02,0x00,0x14,0xd6,0x42,0x00,0x01,0x02,0x00,0x03,0x47,0x00,0x08, 0x42,0x00,0x00,0x00,0x96,0x0a,0x00,0x04,0x02,0x00,0x11,0x96,0x91,0x00,0x04,0x02,
0x0a,0x00,0x0f,0x47,0x00,0x04,0x15,0xf9,0x42,0x00,0x01,0x02,0x00,0xb7,0xf9,0x00, 0x00,0x02,0x3c,0x00,0x01,0x1c,0x00,0x01,0x46,0x00,0x0f,0x90,0x00,0x08,0x11,0xd6,
0x00,0x00,0x40,0xac,0xf2,0xf2,0xac,0x40,0x00,0x3d,0x00,0x06,0x02,0x00,0x0f,0x47, 0x26,0x00,0x05,0x02,0x00,0x14,0xd6,0x43,0x00,0x01,0x02,0x00,0x03,0x48,0x00,0x08,
0x00,0x17,0x87,0x40,0xd3,0xff,0xff,0xff,0xff,0xd3,0x40,0x47,0x00,0x0f,0x8e,0x00, 0x0a,0x00,0x02,0x4d,0x00,0x05,0x30,0x00,0x02,0x02,0x00,0x42,0x00,0x00,0x00,0xf9,
0x0f,0x0e,0xd5,0x00,0x11,0xac,0x97,0x00,0x26,0xff,0xac,0x47,0x00,0x05,0xa8,0x01, 0x0a,0x00,0x04,0x02,0x00,0xb7,0xf9,0x00,0x00,0x00,0x40,0xac,0xf2,0xf2,0xac,0x40,
0x0f,0x8e,0x00,0x07,0x0e,0x63,0x01,0x12,0xf2,0x47,0x00,0x15,0xf2,0x47,0x00,0x01, 0x00,0x3e,0x00,0x06,0x02,0x00,0x01,0x97,0x00,0x0f,0x48,0x00,0x13,0x87,0x40,0xd3,
0x27,0x01,0x0f,0x63,0x01,0x0c,0x0e,0xf1,0x01,0x0c,0x47,0x00,0x02,0x56,0x00,0x03, 0xff,0xff,0xff,0xff,0xd3,0x40,0x48,0x00,0x02,0x87,0x00,0x02,0x8b,0x00,0x01,0xfd,
0xac,0x01,0x0f,0x1c,0x01,0x05,0x0e,0x7f,0x02,0x0b,0xd5,0x00,0x02,0x8c,0x00,0x04, 0x01,0x04,0x77,0x00,0x03,0x02,0x00,0x0f,0xd8,0x00,0x02,0x12,0xac,0x1d,0x00,0x16,
0x71,0x01,0x0f,0x47,0x00,0x06,0x0d,0x0d,0x03,0x0a,0x63,0x01,0x04,0x8c,0x00,0x03, 0xac,0x48,0x00,0x05,0xae,0x01,0x0f,0x90,0x00,0x08,0x0e,0x68,0x01,0x12,0xf2,0x48,
0x90,0x00,0x0f,0x47,0x00,0x06,0x0e,0x9b,0x03,0x08,0xf1,0x01,0x02,0x88,0x00,0x04, 0x00,0x15,0xf2,0x48,0x00,0x01,0x2b,0x01,0x01,0x89,0x00,0x0f,0x48,0x00,0x08,0x0e,
0x02,0x00,0x03,0x47,0x00,0x0f,0x02,0x00,0x04,0x0f,0x29,0x04,0x07,0x02,0x86,0x00, 0xf8,0x01,0x0c,0x48,0x00,0x02,0x57,0x00,0x03,0xb2,0x01,0x01,0x4f,0x00,0x06,0x14,
0x06,0x02,0x00,0x02,0x7f,0x02,0x0f,0x02,0x00,0x30,0x01,0x42,0x03,0x0f,0x02,0x00, 0x00,0x03,0x02,0x00,0x0f,0x88,0x02,0x02,0x0b,0xd8,0x00,0x02,0x8e,0x00,0x04,0x76,
0x2f,0x05,0x47,0x00,0x54,0x12,0x28,0x33,0x26,0x08,0x50,0x00,0x06,0xb0,0x00,0x0f, 0x01,0x0f,0x48,0x00,0x07,0x0d,0x18,0x03,0x0a,0x68,0x01,0x03,0x72,0x00,0x01,0x02,
0x02,0x00,0x12,0x04,0x47,0x00,0xb4,0x35,0x95,0xdd,0xff,0xff,0xff,0xff,0xfa,0xc4, 0x00,0x01,0x63,0x01,0x01,0x05,0x00,0x01,0x0f,0x00,0x06,0x02,0x00,0x01,0x68,0x00,
0x5c,0x01,0x4a,0x00,0x0f,0x02,0x00,0x1b,0x01,0x8e,0x00,0x16,0xb2,0x74,0x00,0x2f, 0x0d,0xa8,0x03,0x08,0xf8,0x01,0x01,0x22,0x00,0x05,0x02,0x00,0x04,0x90,0x00,0x0f,
0xbb,0x0b,0x40,0x00,0x1b,0x03,0x02,0x00,0x01,0x47,0x00,0x71,0xe9,0xff,0xff,0xff, 0x02,0x00,0x04,0x0f,0x38,0x04,0x07,0x06,0x73,0x00,0x02,0x02,0x00,0x02,0x01,0x02,
0xff,0xfe,0xfa,0x4d,0x00,0x13,0xa9,0x19,0x00,0x0f,0x02,0x00,0x1b,0x01,0x47,0x00, 0x0f,0x47,0x00,0x04,0x0f,0x02,0x00,0x1a,0x01,0xb5,0x01,0x0f,0x02,0x00,0x30,0x06,
0x81,0xe5,0xff,0xff,0xe5,0x49,0x09,0x03,0x3c,0xda,0x00,0x1f,0x2b,0x41,0x00,0x1b, 0x48,0x00,0x54,0x12,0x28,0x33,0x26,0x08,0x52,0x00,0x02,0xaf,0x00,0x0f,0x02,0x00,
0x02,0x02,0x00,0x01,0x47,0x00,0xe2,0xe1,0xff,0xff,0xa3,0x00,0x00,0x00,0x00,0x44, 0x16,0x05,0x48,0x00,0xb4,0x35,0x95,0xdd,0xff,0xff,0xff,0xff,0xfa,0xc4,0x5c,0x01,
0xff,0xff,0xff,0xff,0x6f,0x19,0x00,0xa4,0x00,0x00,0x14,0x76,0xbb,0xdd,0xe6,0xd3, 0x4b,0x00,0x0f,0x02,0x00,0x1b,0x02,0x90,0x00,0x16,0xb2,0x7a,0x00,0x2f,0xbb,0x0b,
0x9e,0x37,0x10,0x00,0x0f,0x02,0x00,0x09,0x01,0x47,0x00,0xe3,0xbe,0xdc,0xdc,0x6b, 0x41,0x00,0x1b,0x03,0x02,0x00,0x02,0x48,0x00,0x71,0xe9,0xff,0xff,0xff,0xff,0xfe,
0x00,0x00,0x00,0x00,0x09,0xff,0xff,0xff,0xff,0x89,0x2f,0x00,0x21,0x53,0xf8,0xe5, 0xfa,0x4e,0x00,0x13,0xa9,0x1a,0x00,0x0f,0x02,0x00,0x1b,0x02,0x48,0x00,0x81,0xe5,
0x00,0x33,0xff,0xfe,0x7b,0x11,0x00,0x0f,0x02,0x00,0x09,0x01,0x47,0x00,0x02,0x02, 0xff,0xff,0xe5,0x49,0x09,0x03,0x3c,0xdd,0x00,0x1f,0x2b,0x42,0x00,0x1b,0x02,0x02,
0x00,0x82,0x0e,0x14,0x14,0xff,0xff,0xff,0xff,0x90,0x0e,0x00,0xbf,0x00,0x6c,0xff, 0x00,0x02,0x48,0x00,0xe2,0xe1,0xff,0xff,0xa3,0x00,0x00,0x00,0x00,0x44,0xff,0xff,
0xff,0xe0,0x8b,0x83,0xda,0xff,0xff,0xff,0x90,0x00,0x10,0x02,0x47,0x00,0x42,0x01, 0xff,0xff,0x6f,0x1a,0x00,0xa4,0x00,0x00,0x14,0x76,0xbb,0xdd,0xe6,0xd3,0x9e,0x37,
0x52,0xa3,0xe2,0x62,0x01,0x06,0x47,0x00,0xb3,0x68,0xff,0xff,0x40,0x00,0x00,0x13, 0x10,0x00,0x0f,0x02,0x00,0x09,0x02,0x48,0x00,0xe3,0xbe,0xdc,0xdc,0x6b,0x00,0x00,
0xf1,0xff,0xff,0x8c,0x59,0x00,0x0a,0x02,0x00,0x02,0xaf,0x04,0x01,0x73,0x04,0x03, 0x00,0x00,0x09,0xff,0xff,0xff,0xff,0x89,0x30,0x00,0x21,0x53,0xf8,0xe8,0x00,0x33,
0x47,0x00,0x22,0x1d,0xca,0xc0,0x00,0x01,0x02,0x00,0x04,0x8e,0x00,0xba,0x41,0xa4, 0xff,0xfe,0x7b,0x11,0x00,0x0f,0x02,0x00,0x09,0x02,0x48,0x00,0x02,0x02,0x00,0x82,
0xa4,0x12,0x00,0x00,0x00,0xc5,0xff,0xff,0xa8,0x40,0x00,0x0f,0x02,0x00,0x01,0x51, 0x0e,0x14,0x14,0xff,0xff,0xff,0xff,0x90,0x0e,0x00,0xbf,0x00,0x6c,0xff,0xff,0xe0,
0xff,0xff,0x00,0x00,0x0d,0xa2,0x01,0x48,0xe7,0xc1,0xb8,0xb8,0x8e,0x00,0x82,0x00, 0x8b,0x83,0xda,0xff,0xff,0xff,0x92,0x00,0x10,0x03,0x48,0x00,0x42,0x01,0x52,0xa3,
0x00,0x12,0x55,0x7a,0x8c,0x90,0xe4,0x39,0x05,0x01,0x02,0x00,0x51,0x14,0x5e,0x7e, 0xe2,0x67,0x01,0x06,0x48,0x00,0xb3,0x68,0xff,0xff,0x40,0x00,0x00,0x13,0xf1,0xff,
0x6c,0x1e,0x0a,0x00,0x0c,0x02,0x00,0xb3,0xff,0xff,0x00,0x00,0x79,0xff,0xff,0xff, 0xff,0x8c,0x5a,0x00,0x0a,0x02,0x00,0x01,0x3b,0x00,0x02,0x15,0x05,0x03,0x0d,0x00,
0xff,0x79,0x03,0xbc,0x03,0x04,0x8e,0x00,0x31,0x01,0x81,0xf7,0x9e,0x00,0x06,0x47, 0x32,0x00,0x1d,0xca,0xc3,0x00,0x01,0x02,0x00,0x04,0x90,0x00,0xba,0x41,0xa4,0xa4,
0x00,0x7c,0x12,0xf7,0xfe,0xe1,0xfc,0xf9,0x42,0x43,0x00,0x01,0xbc,0x04,0x81,0xff, 0x12,0x00,0x00,0x00,0xc5,0xff,0xff,0xa8,0x41,0x00,0x0f,0x02,0x00,0x01,0x01,0x55,
0x00,0x00,0xbb,0xff,0xff,0xff,0xd4,0x0f,0x00,0x08,0x8e,0x00,0x86,0x82,0xff,0xff, 0x00,0x11,0x0d,0xa8,0x01,0x48,0xe7,0xc1,0xb8,0xb8,0x90,0x00,0x82,0x00,0x00,0x12,
0xff,0xbc,0x8d,0x88,0xe2,0x47,0x00,0x71,0x13,0xff,0x7e,0x00,0x5d,0xff,0xb4,0x2a, 0x55,0x7a,0x8c,0x90,0xe4,0x4c,0x05,0x01,0x02,0x00,0x51,0x14,0x5e,0x7e,0x6c,0x1e,
0x00,0x0f,0x1c,0x01,0x00,0xa7,0xd1,0xff,0xff,0xff,0xc8,0x00,0x00,0x00,0x00,0x2a, 0x0a,0x00,0x0c,0x02,0x00,0x01,0x48,0x00,0x73,0x79,0xff,0xff,0xff,0xff,0x79,0x03,
0x47,0x00,0x96,0x03,0xf3,0xff,0xff,0x8e,0x00,0x00,0x00,0xc0,0x47,0x00,0x73,0x02, 0xca,0x03,0x04,0x90,0x00,0x31,0x01,0x81,0xf7,0xa0,0x00,0x06,0x48,0x00,0x7c,0x12,
0x22,0x49,0x61,0x84,0xff,0xcf,0x47,0x00,0x09,0x02,0x00,0xf2,0x04,0xff,0xff,0x00, 0xf7,0xfe,0xe1,0xfc,0xf9,0x42,0x44,0x00,0x05,0xcd,0x04,0x51,0xbb,0xff,0xff,0xff,
0x00,0xb5,0xff,0xff,0xff,0xff,0x70,0x18,0x1f,0x6c,0xec,0xff,0xff,0xff,0xff,0x94, 0xd4,0x10,0x00,0x08,0x90,0x00,0x86,0x82,0xff,0xff,0xff,0xbc,0x8d,0x88,0xe2,0x48,
0x20,0x00,0x96,0x19,0xff,0xff,0xff,0x56,0x00,0x00,0x03,0xd4,0x47,0x00,0x72,0x10, 0x00,0x71,0x13,0xff,0x7e,0x00,0x5d,0xff,0xb4,0x2a,0x00,0x03,0x83,0x00,0x02,0x1c,
0xcc,0xff,0xde,0xd9,0xff,0xd0,0x20,0x00,0x0a,0x02,0x00,0x53,0xff,0xff,0x00,0x00, 0x01,0x03,0x0d,0x00,0xa7,0xd1,0xff,0xff,0xff,0xc8,0x00,0x00,0x00,0x00,0x2a,0x48,
0x64,0x04,0x01,0x02,0x02,0x00,0xf3,0x04,0xfb,0xdc,0x4c,0x00,0x00,0x00,0x00,0x07, 0x00,0x96,0x03,0xf3,0xff,0xff,0x8e,0x00,0x00,0x00,0xc0,0x48,0x00,0x73,0x02,0x22,
0xf7,0xff,0xff,0xd4,0x58,0x5f,0xc5,0xff,0xff,0xff,0xc1,0xe3,0x20,0x55,0x6c,0xff, 0x49,0x61,0x84,0xff,0xcf,0x48,0x00,0x09,0x02,0x00,0x01,0xd8,0x00,0xf2,0x00,0xb5,
0xa4,0x00,0x30,0x47,0x00,0x0d,0xf1,0x01,0x22,0x04,0xc2,0x41,0x00,0x31,0xff,0xb3, 0xff,0xff,0xff,0xff,0x70,0x18,0x1f,0x6c,0xec,0xff,0xff,0xff,0xff,0x94,0x21,0x00,
0xc5,0x09,0x00,0x11,0x64,0x6a,0x00,0x11,0x95,0x0c,0x00,0x71,0xff,0xe1,0xff,0xff, 0x96,0x19,0xff,0xff,0xff,0x56,0x00,0x00,0x03,0xd4,0x48,0x00,0x72,0x10,0xcc,0xff,
0xff,0xff,0x0c,0x12,0x00,0x81,0x64,0xff,0xd5,0x64,0xbe,0xff,0xdf,0x26,0x0d,0x00, 0xde,0xd9,0xff,0xd0,0x20,0x00,0x0a,0x02,0x00,0x01,0x48,0x00,0x13,0x64,0x08,0x01,
0x0a,0x02,0x00,0x01,0x7f,0x02,0xa1,0x0a,0x92,0xf6,0xff,0xff,0xff,0xf3,0x83,0x05, 0x02,0x02,0x00,0xf3,0x04,0xfb,0xdc,0x4c,0x00,0x00,0x00,0x00,0x07,0xf7,0xff,0xff,
0x72,0x3b,0x00,0x02,0x47,0x00,0x86,0x07,0x97,0xfa,0xff,0xff,0xeb,0x5c,0x60,0x47, 0xd4,0x58,0x5f,0xc5,0xff,0xff,0xff,0xc1,0x5a,0x21,0x55,0x6c,0xff,0xa4,0x00,0x30,
0x00,0x82,0x09,0xbc,0xff,0xfb,0x83,0xf9,0xff,0x9c,0x42,0x00,0x0d,0x8e,0x00,0x7d, 0x48,0x00,0x01,0x3b,0x00,0x02,0xd4,0x00,0x03,0x0d,0x00,0x22,0x04,0xc2,0x42,0x00,
0x00,0x00,0x00,0x0a,0x3b,0x4e,0x3c,0x6a,0x04,0x41,0x0e,0x37,0x31,0x06,0x1e,0x00, 0x31,0xff,0xb3,0xc5,0x09,0x00,0x11,0x64,0x6c,0x00,0x11,0x95,0x0c,0x00,0x71,0xff,
0x05,0x02,0x00,0x25,0x14,0x0f,0x0b,0x00,0x0a,0x02,0x00,0x01,0x8e,0x00,0x0f,0x02, 0xe1,0xff,0xff,0xff,0xff,0x0c,0x12,0x00,0x81,0x64,0xff,0xd5,0x64,0xbe,0xff,0xdf,
0x00,0x2f,0x02,0x49,0x05,0x0f,0x02,0x00,0x0c,0xf1,0x0f,0xfb,0xf2,0xe9,0xe1,0xd9, 0x26,0x0d,0x00,0x0a,0x02,0x00,0x01,0x55,0x00,0xb1,0x00,0x0a,0x92,0xf6,0xff,0xff,
0xd0,0xc7,0xbf,0xb6,0xae,0xa5,0x9d,0x94,0x8c,0x83,0x7a,0x71,0x69,0x60,0x58,0x4f, 0xff,0xf3,0x83,0x05,0x72,0x3c,0x00,0x02,0x48,0x00,0x86,0x07,0x97,0xfa,0xff,0xff,
0x47,0x3e,0x36,0x2d,0x25,0x1c,0x13,0x0b,0x02,0x45,0x02,0x01,0xac,0x06,0x0f,0x02, 0xeb,0x5c,0x60,0x48,0x00,0x82,0x09,0xbc,0xff,0xfb,0x83,0xf9,0xff,0x9c,0x43,0x00,
0x00,0x0c,0x81,0xfb,0xf2,0xea,0xe1,0xd8,0xd0,0xc8,0xbe,0x47,0x00,0xbf,0x8b,0x83, 0x01,0x3b,0x00,0x02,0x8c,0x00,0x03,0x0d,0x00,0x7d,0x00,0x00,0x00,0x0a,0x3b,0x4e,
0x7a,0x72,0x69,0x60,0x58,0x50,0x47,0x3e,0x35,0x47,0x00,0x1e,0xa4,0xe9,0xe1,0xd8, 0x3c,0x7a,0x04,0x41,0x0e,0x37,0x31,0x06,0x1e,0x00,0x05,0x02,0x00,0x25,0x14,0x0f,
0xd0,0xc7,0xbe,0xb6,0xad,0xa5,0x9c,0x47,0x00,0x01,0x8e,0x00,0x1f,0x24,0x8e,0x00, 0x0b,0x00,0x0a,0x02,0x00,0x01,0x55,0x00,0x0f,0x02,0x00,0x30,0x01,0x48,0x00,0x01,
0x1a,0x32,0xfa,0xf3,0xea,0x47,0x00,0x66,0xae,0xa5,0x9d,0x94,0x8b,0x82,0x8e,0x00, 0xcd,0x00,0x0f,0x02,0x00,0x09,0xf6,0x0f,0xfb,0xf2,0xe9,0xe1,0xd9,0xd0,0xc7,0xbf,
0x3f,0x24,0x1c,0x14,0xd5,0x00,0x1e,0x03,0x1c,0x01,0x03,0x47,0x00,0x1f,0x4f,0xd5, 0xb6,0xae,0xa5,0x9d,0x94,0x8c,0x83,0x7a,0x71,0x69,0x60,0x58,0x4f,0x47,0x3e,0x36,
0x00,0x21,0x01,0x8e,0x00,0x32,0xbf,0xb6,0xad,0x1c,0x01,0x35,0x71,0x69,0x61,0x63, 0x2d,0x25,0x1c,0x13,0x0b,0x02,0x4d,0x02,0x0f,0x44,0x00,0x09,0xc1,0xff,0xff,0xff,
0x01,0x1f,0x0a,0x63,0x01,0x19,0x03,0xaa,0x01,0x87,0xad,0xa5,0x9d,0x94,0x8c,0x82, 0xff,0xfb,0xf2,0xea,0xe1,0xd8,0xd0,0xc8,0xbe,0x48,0x00,0xbf,0x8b,0x83,0x7a,0x72,
0x7a,0x72,0x47,0x00,0x0f,0xd5,0x00,0x1a,0x57,0xe9,0xe1,0xd9,0xd0,0xc8,0x63,0x01, 0x69,0x60,0x58,0x50,0x47,0x3e,0x35,0x48,0x00,0x1f,0xa4,0xe9,0xe1,0xd8,0xd0,0xc7,
0x03,0x8e,0x00,0x5f,0x24,0x1c,0x14,0x0a,0x03,0xf1,0x01,0x1a,0x03,0x38,0x02,0x4f, 0xbe,0xb6,0xad,0xa5,0x9c,0x48,0x00,0x01,0x90,0x00,0x1f,0x24,0x90,0x00,0x1b,0x32,
0x9c,0x94,0x8c,0x83,0x8e,0x00,0x25,0x61,0xfa,0xf2,0xea,0xe1,0xd9,0xcf,0x63,0x01, 0xfa,0xf3,0xea,0x48,0x00,0x66,0xae,0xa5,0x9d,0x94,0x8b,0x82,0x90,0x00,0x3f,0x24,
0x01,0xf1,0x01,0x01,0x1c,0x01,0x5f,0x46,0x3e,0x35,0x2d,0x24,0x1c,0x01,0x1a,0x18, 0x1c,0x14,0xd8,0x00,0x1f,0x03,0x20,0x01,0x03,0x48,0x00,0x1f,0x4f,0xd8,0x00,0x22,
0xfa,0xc6,0x02,0x04,0xaa,0x01,0x21,0x46,0x3f,0x47,0x00,0x0f,0x1c,0x01,0x1c,0x01, 0x01,0x90,0x00,0x32,0xbf,0xb6,0xad,0x20,0x01,0x35,0x71,0x69,0x61,0x68,0x01,0x1f,
0xf1,0x01,0x41,0xad,0xa5,0x9d,0x93,0xd5,0x00,0x4f,0x60,0x58,0x50,0x46,0x7f,0x02, 0x0a,0x68,0x01,0x1a,0x03,0xb0,0x01,0x87,0xad,0xa5,0x9d,0x94,0x8c,0x82,0x7a,0x72,
0x1f,0x01,0x0d,0x03,0x01,0xd5,0x00,0x01,0x54,0x03,0x07,0x63,0x01,0x0f,0x54,0x03, 0x48,0x00,0x0f,0xd8,0x00,0x1b,0x57,0xe9,0xe1,0xd9,0xd0,0xc8,0x68,0x01,0x03,0x90,
0x1d,0x0a,0x63,0x01,0x51,0x60,0x57,0x50,0x47,0x3f,0x8e,0x00,0x06,0x38,0x02,0x0f, 0x00,0x5f,0x24,0x1c,0x14,0x0a,0x03,0xf8,0x01,0x1b,0x03,0x40,0x02,0x4f,0x9c,0x94,
0x02,0x00,0x30,0x0f,0x70,0x04,0x38,0x0f,0x02,0x00,0x30,0x0f,0x6a,0x04,0x0c,0x0f, 0x8c,0x83,0x90,0x00,0x26,0x61,0xfa,0xf2,0xea,0xe1,0xd9,0xcf,0x68,0x01,0x01,0xf8,
0x02,0x00,0x11,0x50,0xff,0xff,0xff,0xff,0xff, 0x01,0x01,0x20,0x01,0x5f,0x46,0x3e,0x35,0x2d,0x24,0x20,0x01,0x1b,0x18,0xfa,0xd0,
0x02,0x04,0xb0,0x01,0x21,0x46,0x3f,0x48,0x00,0x0f,0x20,0x01,0x1d,0x01,0xf8,0x01,
0x41,0xad,0xa5,0x9d,0x93,0xd8,0x00,0x4f,0x60,0x58,0x50,0x46,0x88,0x02,0x20,0x01,
0x18,0x03,0x01,0xd8,0x00,0x01,0x60,0x03,0x07,0x68,0x01,0x0f,0x60,0x03,0x1e,0x0a,
0x68,0x01,0x51,0x60,0x57,0x50,0x47,0x3f,0x90,0x00,0x07,0x40,0x02,0x0f,0x02,0x00,
0x30,0x01,0x38,0x04,0x0f,0x02,0x00,0x30,0x0f,0x48,0x00,0x38,0x02,0x63,0x04,0x0f,
0x02,0x00,0x29,0x50,0xff,0xff,0xff,0xff,0x00,
}; };
@@ -152,7 +158,7 @@ const lv_image_dsc_t test_RGB565A8_LZ4_align1 = {
.header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED, .header.flags = 0 | LV_IMAGE_FLAGS_COMPRESSED,
.header.w = 71, .header.w = 71,
.header.h = 60, .header.h = 60,
.header.stride = 142, .header.stride = 144,
.data_size = sizeof(test_RGB565A8_LZ4_align1_map), .data_size = sizeof(test_RGB565A8_LZ4_align1_map),
.data = test_RGB565A8_LZ4_align1_map, .data = test_RGB565A8_LZ4_align1_map,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A1_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A1_RLE_ALIGN1
uint8_t test_A1_RLE_align1_map[] = { uint8_t test_A1_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0xc9,0x03,0x00,0x00,0xc0,0x03,0x00,0x00,0xff,0xff,0xff,0xff, 0x01,0x00,0x00,0x00,0xc8,0x03,0x00,0x00,0xc0,0x03,0x00,0x00,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9f,0xff,0xe0, 0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9f,0xff,0xe0,
@@ -76,12 +76,12 @@ uint8_t test_A1_RLE_align1_map[] = {
0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0xc8,0x00,0x00,0x00, 0x00,0x00,0x00,0x9f,0xff,0xff,0xff,0xff,0xff,0xe0,0x00,0x02,0xc7,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A2_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A2_RLE_ALIGN1
uint8_t test_A2_RLE_align1_map[] = { uint8_t test_A2_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x81,0x07,0x00,0x00,0x80,0x07,0x00,0x00,0x11,0xff,0xff,0xfc, 0x01,0x00,0x00,0x00,0x80,0x07,0x00,0x00,0x80,0x07,0x00,0x00,0x11,0xff,0xff,0xfc,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,
@@ -132,7 +132,7 @@ uint8_t test_A2_RLE_align1_map[] = {
0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xa9,0x55,0x50,0x00,0x00,0x0c,0x00,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xa9,0x55,0x50,0x00,0x00,0x0c,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc3,0xff,0xff,0xff,0xff, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc3,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xa9,0x55,0x50,0x00,0x00,0x0c,0x00,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xfe,0xaa,0xa9,0x55,0x50,0x00,0x00,0x0c,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0xfe,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0xfd,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,
@@ -140,7 +140,7 @@ uint8_t test_A2_RLE_align1_map[] = {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A4_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A4_RLE_ALIGN1
uint8_t test_A4_RLE_align1_map[] = { uint8_t test_A4_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0xa7,0x09,0x00,0x00,0x40,0x0b,0x00,0x00,0x23,0xff,0x8f,0xf0, 0x01,0x00,0x00,0x00,0xa6,0x09,0x00,0x00,0x40,0x0b,0x00,0x00,0x23,0xff,0x8f,0xf0,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x21,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x21,0x00,
0x8f,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00, 0x8f,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,
0x21,0x00,0xff,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x21,0x00,0xff,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
@@ -174,8 +174,8 @@ uint8_t test_A4_RLE_align1_map[] = {
0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x21, 0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x21,
0x00,0x8f,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0, 0x00,0x8f,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,
0x00,0x21,0x00,0x8e,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x21,0x00,0x8e,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0xff,0x22,0xff,0x8e,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xff,0x22,0xff,0x8d,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A8_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_A8_RLE_ALIGN1
uint8_t test_A8_RLE_align1_map[] = { uint8_t test_A8_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x8a,0x0c,0x00,0x00,0xc0,0x12,0x00,0x00,0x47,0xff,0x8b,0x00, 0x01,0x00,0x00,0x00,0x89,0x0c,0x00,0x00,0xc0,0x12,0x00,0x00,0x47,0xff,0x8b,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c,0xff,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c,0xff,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x9e,0xff,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x9e,0xff,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
@@ -220,8 +220,8 @@ uint8_t test_A8_RLE_align1_map[] = {
0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c, 0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c,
0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c,0xff, 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8c,0xff,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8b,0xff,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x44,0x00,0x8b,0xff,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x46,0xff,0x8a,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x46,0xff,0x89,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,
}; };
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_ARGB8888_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_ARGB8888_RLE_ALIGN1
uint8_t test_ARGB8888_RLE_align1_map[] = { uint8_t test_ARGB8888_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x34,0x30,0x00,0x00,0x80,0x43,0x00,0x00,0x47,0x00,0xff,0x00, 0x01,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x80,0x43,0x00,0x00,0x47,0x00,0xff,0x00,
0xff,0x83,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x44,0x00, 0xff,0x83,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x44,0x00,
0x00,0x00,0x00,0x84,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff, 0x00,0x00,0x00,0x84,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,
0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x96,0x00,0xff,0x00,0xff,0x00,0x00, 0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x96,0x00,0xff,0x00,0xff,0x00,0x00,
@@ -791,7 +791,7 @@ uint8_t test_ARGB8888_RLE_align1_map[] = {
0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x84, 0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x84,
0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00, 0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,
0x44,0x00,0x00,0x00,0x00,0x83,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff, 0x44,0x00,0x00,0x00,0x00,0x83,0x00,0xff,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xff,
0x00,0xff,0x46,0x00,0xff,0x00,0xff,0x82,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xff,0x46,0x00,0xff,0x00,0xff,0x81,0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -80,7 +80,7 @@ uint8_t test_I1_RLE_align1_map[] = {
0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0x00,0x56,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xfc,0x00,0x17,0x00, 0xff,0xff,0xff,0xff,0xfc,0x00,0x16,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I2_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I2_RLE_ALIGN1
uint8_t test_I2_RLE_align1_map[] = { uint8_t test_I2_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x92,0x07,0x00,0x00,0x90,0x07,0x00,0x00,0x90,0x5a,0x00,0x3d, 0x01,0x00,0x00,0x00,0x91,0x07,0x00,0x00,0x90,0x07,0x00,0x00,0x90,0x5a,0x00,0x3d,
0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x11,0xff,0xff, 0xf3,0x5e,0xff,0xf4,0xe3,0x21,0xba,0xba,0x08,0x38,0xff,0x13,0xff,0x11,0xff,0xff,
0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea, 0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,
0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,
@@ -133,7 +133,7 @@ uint8_t test_I2_RLE_align1_map[] = {
0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00, 0xff,0xff,0xdd,0x55,0x55,0x55,0x55,0x55,0x59,0x99,0xaa,0xaa,0xaa,0xac,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xeb,0xff,0xff,0xff,
0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00, 0xff,0xff,0xf7,0x55,0x55,0x55,0x55,0x55,0x56,0x66,0x99,0xaa,0xaa,0xac,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xfe, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,0xfd,
0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xea,0xaa,0xaa,
0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,
@@ -141,7 +141,7 @@ uint8_t test_I2_RLE_align1_map[] = {
0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00, 0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xac,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I4_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I4_RLE_ALIGN1
uint8_t test_I4_RLE_align1_map[] = { uint8_t test_I4_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0xe9,0x09,0x00,0x00,0x80,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47, 0x01,0x00,0x00,0x00,0xe8,0x09,0x00,0x00,0x80,0x0b,0x00,0x00,0xc1,0x4c,0x70,0x47,
0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f,0x8f, 0x00,0x00,0x00,0x00,0xfc,0xff,0x00,0x00,0xfc,0x00,0xff,0xf0,0xfc,0x3e,0x8f,0x8f,
0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff,0xff, 0x35,0x00,0xff,0xff,0x98,0x00,0x00,0x00,0x8e,0x00,0xff,0xff,0x60,0x00,0xff,0xff,
0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff, 0xcc,0xff,0x00,0x00,0x97,0x06,0xff,0x08,0xff,0xd5,0xff,0x00,0xff,0xff,0xff,0xff,
@@ -178,8 +178,8 @@ uint8_t test_I4_RLE_align1_map[] = {
0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0, 0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,
0x00,0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x21,0x00,0x8f,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xa0,0x00,0x21,0x00,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0xaa,0x22,0xaa,0x8e,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0xaa,0x22,0xaa,0x8d,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I8_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_I8_RLE_ALIGN1
uint8_t test_I8_RLE_align1_map[] = { uint8_t test_I8_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x32,0x12,0x00,0x00,0xc0,0x16,0x00,0x00,0xff,0x4c,0x70,0x47, 0x01,0x00,0x00,0x00,0x31,0x12,0x00,0x00,0xc0,0x16,0x00,0x00,0xff,0x4c,0x70,0x47,
0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58,0x00,0xff,0xff, 0x00,0x00,0xff,0xff,0xa5,0x00,0xff,0xff,0x02,0x00,0xff,0xff,0x58,0x00,0xff,0xff,
0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff, 0x7a,0x00,0xff,0xff,0xe1,0x00,0xff,0xff,0xb6,0x00,0xff,0xff,0x1c,0x00,0xff,0xff,
0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0,0x00,0xff,0xff, 0x69,0x00,0xff,0xff,0x2d,0x00,0xff,0xff,0xf2,0x00,0xff,0xff,0xd0,0x00,0xff,0xff,
@@ -311,7 +311,7 @@ uint8_t test_I8_RLE_align1_map[] = {
0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x9d,0x00,0x44,0x00,0x8c,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x9d,0x00,0x44,0x00,0x8b,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x9d,0x00,0x44,0x00,0x8b,0x9d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x9d,0x46,0x9d,0x8a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x9d,0x46,0x9d,0x89,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_L8_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_L8_RLE_ALIGN1
uint8_t test_L8_RLE_align1_map[] = { uint8_t test_L8_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x20,0x0e,0x00,0x00,0xc0,0x12,0x00,0x00,0x47,0xdb,0x8b,0x00, 0x01,0x00,0x00,0x00,0x1f,0x0e,0x00,0x00,0xc0,0x12,0x00,0x00,0x47,0xdb,0x8b,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0x44,0xfd,0x96,0xdb,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0x44,0xfd,0x96,0xdb,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0xfd,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xfd,0xfd,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
@@ -246,7 +246,7 @@ uint8_t test_L8_RLE_align1_map[] = {
0x00,0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb, 0xdb,0xfd,0x44,0xfd,0x8c,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,
0xfd,0x44,0xfd,0x8b,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0x46, 0xfd,0x44,0xfd,0x8b,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0x46,
0xdb,0x8a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0xdb,0x89,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
}; };
Binary file not shown.
File diff suppressed because it is too large Load Diff
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB565_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB565_RLE_ALIGN1
uint8_t test_RGB565_RLE_align1_map[] = { uint8_t test_RGB565_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x2c,0x18,0x00,0x00,0xc0,0x21,0x00,0x00,0x47,0xe0,0x07,0x83, 0x01,0x00,0x00,0x00,0x2a,0x18,0x00,0x00,0xc0,0x21,0x00,0x00,0x47,0xe0,0x07,0x83,
0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x84,0xe0,0x07,0x00,0x00,0xe0,0x07, 0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x84,0xe0,0x07,0x00,0x00,0xe0,0x07,
0xff,0xff,0x44,0xff,0xff,0x8e,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0xff,0xff, 0xff,0xff,0x44,0xff,0xff,0x8e,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0xff,0xff,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
@@ -407,7 +407,7 @@ uint8_t test_RGB565_RLE_align1_map[] = {
0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,
0xff,0x84,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x84,0xe0,0x07, 0xff,0x84,0xe0,0x07,0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x84,0xe0,0x07,
0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x83,0xe0,0x07,0x00,0x00,0xe0,0x07, 0x00,0x00,0xe0,0x07,0xff,0xff,0x44,0xff,0xff,0x83,0xe0,0x07,0x00,0x00,0xe0,0x07,
0x46,0xe0,0x07,0x82,0x00,0x00,0x00,0x00, 0x46,0xe0,0x07,0x81,0x00,0x00,
}; };
Binary file not shown.
@@ -20,7 +20,7 @@ static const
LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB888_RLE_ALIGN1 LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_TEST_RGB888_RLE_ALIGN1
uint8_t test_RGB888_RLE_align1_map[] = { uint8_t test_RGB888_RLE_align1_map[] = {
0x01,0x00,0x00,0x00,0x34,0x26,0x00,0x00,0x80,0x34,0x00,0x00,0x47,0x00,0xfe,0x00, 0x01,0x00,0x00,0x00,0x31,0x26,0x00,0x00,0x80,0x34,0x00,0x00,0x47,0x00,0xfe,0x00,
0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xfe, 0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xfe,
0xfe,0xfe,0xfe,0x43,0xfe,0xfe,0xfe,0x88,0xfe,0xfe,0x00,0xfe,0x00,0x00,0x00,0x00, 0xfe,0xfe,0xfe,0x43,0xfe,0xfe,0xfe,0x88,0xfe,0xfe,0x00,0xfe,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xfe,0xfe,0xfe,0xfe,0xfe, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xfe,0xfe,0xfe,0xfe,0xfe,
@@ -631,7 +631,7 @@ uint8_t test_RGB888_RLE_align1_map[] = {
0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe, 0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,
0x00,0xfe,0xfe,0xfe,0xfe,0x43,0xfe,0xfe,0xfe,0x86,0xfe,0xfe,0x00,0xfe,0x00,0x00, 0x00,0xfe,0xfe,0xfe,0xfe,0x43,0xfe,0xfe,0xfe,0x86,0xfe,0xfe,0x00,0xfe,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x46,0x00,0x00,0xfe, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x46,0x00,0x00,0xfe,
0x85,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
}; };

Some files were not shown because too many files have changed in this diff Show More