I am trying to integrate the 'console' example into my project.
I can compile the example, just fine. But when I copy paste the code into my project, I get this error:
Code: Select all
undefined reference to esp_vfs_dev_cdcacm_set_rx_line_endings
But in this case, it does not work. I've tried moving things around a bunch, I cannot figure out why.
I'm using esp-idf 4.4 (Master) from June 25th 2021. I've also tried esp-idf 4.4 (Master) from Septempber 9th 2021. Same issue.
What could be causing this?
I've tired:
1. adding a REQUIRES "console" "vfs" to jcord-app (as opposed to jcord-common)
2. copying the vfs & console component directories into /jcord-firmware/jcord-app/components
3. updating esp-idf
My project is laid out like this:
Code: Select all
/esp-idf
/jcord-firmware
/jcord-app
CMakeLists.txt
/main
CMakeLists.txt
/jcord-common
CMakeLists.txt
Code: Select all
# The following five lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
set(EXTRA_COMPONENT_DIRS "../jcord_common")
set(PROJECT_VER "0.5")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(jcord_app)
Code: Select all
idf_component_register(SRCS
"pd_main.c"
INCLUDE_DIRS
".")
Code: Select all
# Although unity is a submodule of cmock, we still depend on the unity component in IDF.
# This is because CI currently doesn't checkout submodules recursively.
idf_component_register(
SRCS
"jcommon/jc_main.c"
REQUIRES
"esp_http_server"
"fatfs"
"esp_wifi"
"esp_timer"
"json"
"spi_flash"
"bootloader_support"
"app_update"
"nvs_flash"
"vfs"
"console"
INCLUDE_DIRS "."
EMBED_FILES
"jcommon/logs.html")