426 questions
-2
votes
0
answers
18
views
platform.io serial monitor troubles with port index
I'm trying to connect a humidity sensor to my blues notecard using platform.io and I have successfully built, flashed, and uploaded my code but when I go to the serial monitor to test and see the ...
0
votes
1
answer
32
views
What determines the name of the upload port?
Why am I seeing the serial port designation change? Does it matter? Is it expected?
I click the "Select Port to Use" thing in the VS Code footer:
This opens a dropdown at the top of the ...
1
vote
0
answers
29
views
Wokwi: firmware binary .pio/build/esp32dev/firmware.bin not found in workspace
I'm working with an ESP32 project using PlatformIO in VS Code and trying to simulate it on Wokwi. I have this in my platformio.ini:
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = ...
0
votes
0
answers
11
views
Adding FreeRTOS lib with stm32cube framework on PlatformIO
I’d like to integrate in my project the FreeRTOS lib but so far I haven’t been able.
If I had “lib_deps = FreeRTOS” it downloads arduino lib for FreeRTOS.
I thought that FreeRTOS would come with the ...
0
votes
0
answers
37
views
How Can I Upgrade my VS Code IDE to Use the v 3.0 Arduino-ESP32 APIs?
I am trying to compile some C code for the ESP32-S3-DevKitC-1 using timers in VS Code. I am trying to use the new(?) hardware/timer code in version 3 of the Arduino ESP32 extension, but my VS Code ...
0
votes
2
answers
85
views
How to filter a BLE Paxcounter to count phones only
Using a BLE and WiFi based Paxcounter to try and measure passenger flow doesn't seem to be very accurate, as I believe the code in this repository counts all devices with a Mac Address, such as ...
0
votes
0
answers
15
views
Nucleo-F303RE cannot connect via USB on PlatformIO
I'm working on a project for uni and I would like to use PlatformIO for the project development, since it seems more practical than the Arduino IDE. However, I keep getting this error when trying to ...
0
votes
0
answers
30
views
STM32H7 Dual Core Project in CLion with Platformio and CubeMX
I am working on a dual-core project for the STM32H745 and I want to use CubeMX for code generation, PlatformIO for building and flashing, and CLion as my IDE. My goal is to set up the M7 core to ...
1
vote
2
answers
64
views
How can I convert disk usage, memory usage, PSRAM usage, and network usage to percentages on ESP32?
I'm programming a miner with ESP32 using Arduino as the programming language and PlatformIo as the compiler. I'm currently developing the telemetry part, and I'm not sure how to get the memory usage, ...
2
votes
0
answers
48
views
ESP32-C3 Super Mini BLE: only the first defined characteristic of the service is visible
I'm using platform IO for my project. When I define my characteristics, only the first one defined and added to the service will be displayed by nRF. I did the tests by swapping the two features and ...
0
votes
1
answer
130
views
Source .pio/build/esp32dev/https_server.crt.S' not found
I have this issue with PlatformIO, Vscode and esp32:
*** [.pio/build/esp32dev/.pio/build/esp32dev/https_server.crt.S.o] Source .pio/build/esp32dev/https_server.crt.S' not found, needed by target .pio/...
3
votes
2
answers
202
views
How to access PSRAM - Pimoroni Pico Plus 2 (RP2350) | PlatformIO
I'm trying to access the PSRAM on a Pimoroni pico plus 2 but im not very skilled in C++.
I'm using platform io.
platformio.ini:
[env:rpipico2]
platform = https://github.com/maxgerhardt/platform-...
2
votes
1
answer
62
views
Issue with linking .cpp files when running pio test with googletest
Resolved
I've resolved the issue when added next configuration options to platformio.ini:
build_src_filter =
+<**/*.cpp>
-<main.cpp>
test_build_src = yes
Original Issue
Noob ...
0
votes
0
answers
28
views
Adafruit Bluefruit SPI friend + Arduino code
How do I rename the service and characteristic ID's of the Adafruit Bluefruit LE SPI Friend?
I have created them and I can add only one property to each, but I don't know how to rename them.
I am ...
1
vote
1
answer
212
views
Debugging esp32c3 with platform.io is not working
I am not able to debug with seeed_xiao_esp32c3 board.
Debugging should work with a correct usb data cable and a board with usb JTAG interface
My platformio.ini looks like this
[env:seeed_xiao_esp32c3]
...