Search found 22 matches

by kaspernyhus
Fri Feb 09, 2024 12:18 pm
Forum: ESP-IDF
Topic: esp_tinyuf2 and esp_tinyusb
Replies: 1
Views: 363

esp_tinyuf2 and esp_tinyusb

I am developing an appication that will use UF2 for firmware updates and other usb features found in the esp_tinyusb component. Is is possible to have these features at the same time? Booting between modes for UF2/non-UF2 is fine, if the tinyusb stacks have to be initialized with different paramters...
by kaspernyhus
Wed Jan 10, 2024 4:29 pm
Forum: ESP-IDF
Topic: Github actions & IDF Component Manager
Replies: 4
Views: 19764

Re: Github actions & IDF Component Manager

Here is a modified workflow that allows for passing an access token https://github.com/kaspernyhus/esp-idf-ci-action .github/workflows name: build-esp-application run-name: "${{ github.actor }}: building esp-idf application" on: [pull_request, push] jobs: build: runs-on: ubuntu-latest steps: - name:...
by kaspernyhus
Wed Jan 10, 2024 2:29 pm
Forum: ESP-IDF
Topic: Github actions & IDF Component Manager
Replies: 4
Views: 19764

Re: Github actions & IDF Component Manager

might have found the solution in the docs: https://docs.espressif.com/projects/idf-component-manager/en/latest/reference/manifest_file.html#environment-variables-in-manifest but I struggle with getting the component manager to read the environment variable set in github actions because these might n...
by kaspernyhus
Wed Jan 10, 2024 12:23 pm
Forum: ESP-IDF
Topic: Github actions & IDF Component Manager
Replies: 4
Views: 19764

Re: Github actions & IDF Component Manager

and I suspect that it will only work with esp-idf v.5 and above. Tried building in CI with managed_components folder and dependencies.lock checked in with esp-idf v4.4.4 and it doesn't work. Even though the manifest files haven't changed it seems the build system tries to connect to the private repo...
by kaspernyhus
Mon Jan 08, 2024 11:07 pm
Forum: ESP-IDF
Topic: Github actions & IDF Component Manager
Replies: 4
Views: 19764

Re: Github actions & IDF Component Manager

I have tried including ssh-agent in the workflow and passing ssh keys from repo secrets, and setting known_hosts in different ways but I still get the error: The authenticity of host 'github.com (140.82.112.3)' can't be established. ECDSA key fingerprint is SHA256:p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/L...
by kaspernyhus
Sat Jan 06, 2024 10:05 pm
Forum: ESP-IDF
Topic: Github actions & IDF Component Manager
Replies: 4
Views: 19764

Github actions & IDF Component Manager

I'm trying to use the espressif github actions `espressif/esp-idf-ci-action@v1` to build a project in my CI pipeline that uses the IDF Component Manager to fetch a component from a private github repo. I made a test project with this manifest file: idf_component.yml ## IDF Component Manager Manifest...
by kaspernyhus
Fri Dec 22, 2023 7:54 am
Forum: ESP-IDF
Topic: PermissionError when solving dependencies on Arch Linux
Replies: 2
Views: 1474

Re: PermissionError when solving dependencies on Arch Linux

oh, you are probably right, removing the cached files worked. Thanks!
by kaspernyhus
Thu Dec 21, 2023 8:14 pm
Forum: ESP-IDF
Topic: PermissionError when solving dependencies on Arch Linux
Replies: 2
Views: 1474

PermissionError when solving dependencies on Arch Linux

Hello, I get the following error message when trying to build blink on a fresh Arch install. Followed get-started guide. Is Python not allowed to make directories? Thanks for any help! ....Updating lock file at /home/kaspernyhus/esp/blink/dependencies.lock Processing 2 dependencies: [1/2] espressif/...
by kaspernyhus
Tue Oct 03, 2023 11:35 am
Forum: ESP-IDF
Topic: usb-ncm
Replies: 0
Views: 880

usb-ncm

Hi, I know this USB networking feature is work in progress. I found this example in the master branch https://github.com/espressif/esp-idf/tree/master/examples/peripherals/usb/device/tusb_ncm I'm trying to run USB audio and this implementation of the USB NCM at the same time and I have it running an...