Skip to content

Commit

Permalink
typo in screen_height
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Jul 12, 2024
1 parent 9623bef commit af3468a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default_envs = esp32
[env]
;-- platformio.ini custom options, reused by TFT_eSPI, SDL2 and in OMOTE code -
custom_screen_width = 240
custom_screen_heigth = 320
custom_screen_height = 320
lib_deps =
lvgl/lvgl@^8.3.11
build_flags =
Expand All @@ -25,7 +25,7 @@ build_flags =
-D ENABLE_KEYBOARD_BLE=1
-D USE_SCENE_SPECIFIC_GUI_LIST=1
-D SCR_WIDTH=${env.custom_screen_width}
-D SCR_HEIGHT=${env.custom_screen_heigth}
-D SCR_HEIGHT=${env.custom_screen_height}
;-D OMOTE_LOG_LEVEL=OMOTE_LOG_LEVEL_NONE
;-D OMOTE_LOG_LEVEL=OMOTE_LOG_LEVEL_ERROR
;-D OMOTE_LOG_LEVEL=OMOTE_LOG_LEVEL_WARN
Expand Down Expand Up @@ -126,7 +126,7 @@ build_flags =
-D USER_SETUP_LOADED=1
-D ILI9341_DRIVER=1
-D TFT_WIDTH=${env.custom_screen_width}
-D TFT_HEIGHT=${env.custom_screen_heigth}
-D TFT_HEIGHT=${env.custom_screen_height}
;-D TFT_MISO not connected
-D TFT_MOSI=23
-D TFT_SCLK=18
Expand Down Expand Up @@ -186,7 +186,7 @@ build_flags =
-D USE_SDL
-D SDL_INCLUDE_PATH="\"SDL2/SDL.h\""
-D SDL_HOR_RES=${env.custom_screen_width}
-D SDL_VER_RES=${env.custom_screen_heigth}
-D SDL_VER_RES=${env.custom_screen_height}
-D SDL_ZOOM=2
;-- hardware abstraction, needed to find hardwareLayer.h ------------------
-I hardware
Expand Down

0 comments on commit af3468a

Please sign in to comment.