This commit is contained in:
2024-12-25 01:15:30 -05:00
parent fa1a19bf3b
commit 49ea3fc400
5 changed files with 4 additions and 4 deletions

View File

2
ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD Normal file → Executable file
View File

@@ -1 +1 @@
ref: refs/heads/main
9d7f2d69f50d1288526d4f1027108e314e8c879f

View File

@@ -18,7 +18,7 @@ set(HEAD_HASH)
file(READ "/home/alex/github/ESP-Nodes/ESP-IDF_Robot_RC/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
set(GIT_DIR "/home/alex/github/ESP-Nodes/.git")
set(GIT_DIR "/home/alex/esp/v5.3.2/esp-idf/.git")
# handle git-worktree
if(EXISTS "${GIT_DIR}/commondir")
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)

2
ESP-IDF_Robot_RC/build/CMakeFiles/git-data/head-ref Normal file → Executable file
View File

@@ -1 +1 @@
0c220155a36c0391e1a1549a70531239ee471c8a
9d7f2d69f50d1288526d4f1027108e314e8c879f

View File

@@ -156,7 +156,7 @@ void example_espnow_data_prepare(example_espnow_send_param_t *send_param)
buf->magic = send_param->magic;
/* Fill all remaining bytes after the data with random values */
//esp_fill_random(buf->payload, send_param->len - sizeof(example_espnow_data_t));
buf->payload = 0x16;
buf->payload = 16;
buf->crc = esp_crc16_le(UINT16_MAX, (uint8_t const *)buf, send_param->len);
}