Fixed multiple devices causing overflow in compile. Fixed PICS Float data type not being decoded correctly (bit order reversed).

This commit is contained in:
2026-05-21 14:06:43 -05:00
parent 7ab3723533
commit 70cd36c934
1394 changed files with 35353 additions and 35295 deletions

View File

@@ -15,10 +15,10 @@
set(HEAD_HASH)
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
file(READ "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
set(GIT_DIR "C:/esp/v6.0/esp-idf/.git")
set(GIT_DIR "C:/Users/e.adame/Documents/ESP32_ModbusTCP/.git")
# handle git-worktree
if(EXISTS "${GIT_DIR}/commondir")
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
@@ -34,17 +34,17 @@ if(HEAD_CONTENTS MATCHES "ref")
# named branch
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/git-data/head-ref" COPYONLY)
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/git-data/head-ref" COPYONLY)
set(HEAD_HASH "${HEAD_REF}")
endif()
else()
# detached HEAD
configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" COPYONLY)
configure_file("${GIT_DIR}/HEAD" "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/git-data/head-ref" COPYONLY)
endif()
if(NOT HEAD_HASH)
file(READ "C:/Users/e.adame/Documents/ESP32_Modbus_TCP_to_PICS_MULTI/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
file(READ "C:/Users/e.adame/Documents/ESP32_ModbusTCP/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
string(STRIP "${HEAD_HASH}" HEAD_HASH)
endif()