-
Notifications
You must be signed in to change notification settings - Fork 72
Comparing changes
Open a pull request
base repository: bitluni/ESP32CompositeVideo
base: master
head repository: PIBSAS/ESP32CompositeVideo
compare: master
- 11 commits
- 7 files changed
- 1 contributor
Commits on Apr 30, 2025
-
Update CompositeGraphics.h to ESP-IDf v5.4 on Arduino IDE and PlatformIO
Arduino Platform: Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4 Board Manager -> esp32 by Espressif Systems version 3.2.0 GitHub: https://github.com/espressif/arduino-esp32/releases Platformio: VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4. Board -> Espressif 32 Dev Module Platform -> Espressif 32 Version 6.10.0 GitHub: https://github.com/platformio/platform-espressif32/releases Changes on files: On CompositeGraphics.h #include <algorithm> 68 void print(char *str) -> void print(const char *str) [char -> const char] 129 backbuffer[y][x] = min(54, color + backbuffer[y][x]); -> backbuffer[y][x] = std::min(54, color + backbuffer[y][x]); [min() -> std:min()]
Configuration menu - View commit details
-
Copy full SHA for 9504255 - Browse repository at this point
Copy the full SHA 9504255View commit details -
Update CompositeOutput.h to ESP-IDF v5.4 for Arduino IDE and PlatformIO
Arduino Platform: Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4 Board Manager -> esp32 by Espressif Systems version 3.2.0 GitHub: https://github.com/espressif/arduino-esp32/releases Platformio: VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4. Board -> Espressif 32 Dev Module Platform -> Espressif 32 Version 6.10.0 GitHub: https://github.com/platformio/platform-espressif32/releases Changes on file: On CompositeOutput.h: After Line 2 add: #include "soc/i2s_reg.h" 166 .communication_format = I2S_COMM_FORMAT_I2S_MSB -> I2S_COMM_FORMAT_STAND_I2S,
Configuration menu - View commit details
-
Copy full SHA for ac16f87 - Browse repository at this point
Copy the full SHA ac16f87View commit details -
Update CompositeVideoSimple.ino add directive for include arduino.h f…
…or PlatformIO #ifdef PLATFORMIO #include <Arduino.h> #endif
Configuration menu - View commit details
-
Copy full SHA for 79b2fce - Browse repository at this point
Copy the full SHA 79b2fceView commit details -
Update CompositeVideoSimple.ino add directive for include arduino.h f…
…or PlatformIO #ifdef ARDUINO #include <Arduino.h> #endif
Configuration menu - View commit details
-
Copy full SHA for fdaf982 - Browse repository at this point
Copy the full SHA fdaf982View commit details -
Update CompositeVideo.ino add directive for PlatformIO
#ifdef ARDUINO #include <Arduino.h> #endif
Configuration menu - View commit details
-
Copy full SHA for ff4737c - Browse repository at this point
Copy the full SHA ff4737cView commit details -
Update Mesh.h max() to std::max()
On Mesh.h After line 2 add: #include <algorithm> 68 const float NdotL = max(0.0f, nx * L[0] + ny * L[1] + nz * L[2]); -> const float NdotL = std::max(0.0f, nx * L[0] + ny * L[1] + nz * L[2]); [max() -> std::max()]
Configuration menu - View commit details
-
Copy full SHA for 56e8ee5 - Browse repository at this point
Copy the full SHA 56e8ee5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03e6ecf - Browse repository at this point
Copy the full SHA 03e6ecfView commit details -
Update CompositeGraphics.h to ESP-IDf v5.4 on Arduino IDE and PlatformIO
Arduino Platform: Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4 Board Manager -> esp32 by Espressif Systems version 3.2.0 GitHub: https://github.com/espressif/arduino-esp32/releases Platformio: VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4. Board -> Espressif 32 Dev Module Platform -> Espressif 32 Version 6.10.0 GitHub: https://github.com/platformio/platform-espressif32/releases Changes on file: On CompositeGraphics.h After line 3 add: #include <algorithm> 68 void print(char *str) -> void print(const char *str) [char -> const char] 129 backbuffer[y][x] = min(54, color + backbuffer[y][x]); -> backbuffer[y][x] = std::min(54, color + backbuffer[y][x]); [min() -> std:min()]
Configuration menu - View commit details
-
Copy full SHA for 63e6083 - Browse repository at this point
Copy the full SHA 63e6083View commit details -
Update CompositeOutput.h to ESP-IDF v5.4 for Arduino IDE and PlatformIO
Arduino Platform: Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4 Board Manager -> esp32 by Espressif Systems version 3.2.0 GitHub: https://github.com/espressif/arduino-esp32/releases Platformio: VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4. Board -> Espressif 32 Dev Module Platform -> Espressif 32 Version 6.10.0 GitHub: https://github.com/platformio/platform-espressif32/releases Changes on file: On CompositeOutput.h: After Line 2 add: #include "soc/i2s_reg.h" 166 .communication_format = I2S_COMM_FORMAT_I2S_MSB -> I2S_COMM_FORMAT_STAND_I2S
Configuration menu - View commit details
-
Copy full SHA for 7984612 - Browse repository at this point
Copy the full SHA 7984612View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8cd36ee - Browse repository at this point
Copy the full SHA 8cd36eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 162c4b3 - Browse repository at this point
Copy the full SHA 162c4b3View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master