Search found 89 matches

by p-rimes
Wed Sep 12, 2018 4:22 pm
Forum: ESP-IDF
Topic: Encrypting device specific data
Replies: 9
Views: 12198

Re: Encrypting device specific data

@WiFive last commit on this was in 2017 -- have you used it without issues on the latest esp-idf master? I'll use a different third-party tool like this if it works for now!
by p-rimes
Tue Sep 11, 2018 3:46 pm
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80372

Re: Preview release: CMake-based build system for ESP-IDF

However, the largest hurdle right now seems to be adding a new flash target (in my case, a fatfs partition image that gets flashed to an offset set in a Kconfig `CONFIG_FATFS_PARTITION_BASE_ADDR`). Not really sure where to hook in my own partitions into the flashing. I don't think this has been con...
by p-rimes
Tue Sep 11, 2018 12:31 am
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80372

Re: Preview release: CMake-based build system for ESP-IDF

However, the largest hurdle right now seems to be adding a new flash target (in my case, a fatfs partition image that gets flashed to an offset set in a Kconfig `CONFIG_FATFS_PARTITION_BASE_ADDR`). Not really sure where to hook in my own partitions into the flashing. I switched from idf.py to using ...
by p-rimes
Tue Sep 11, 2018 12:22 am
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80372

Re: Preview release: CMake-based build system for ESP-IDF

It can, it's just a little fiddler. Ah, I see! ccache is just a regular tool, not part of cmake. Well I look forward to supercharging all my toolchains this way! 1. For generated sources, it seems that adding them the recommended way in the new docs only affects the `${COMPONENT_NAME}.a` output tar...
by p-rimes
Mon Sep 10, 2018 4:41 pm
Forum: ESP-IDF
Topic: Preview release: CMake-based build system for ESP-IDF
Replies: 65
Views: 80372

Re: Preview release: CMake-based build system for ESP-IDF

This new CMake build system is awesome! I'm slowly porting my component.mk files, and really enjoying everything about it (my component dependencies are now much more clear -- it won't even build without all dependent components included correctly in COMPONENT_REQUIRES). As well, ccache is a godsend...
by p-rimes
Tue Aug 28, 2018 6:14 pm
Forum: ESP-IDF
Topic: Encrypting device specific data
Replies: 9
Views: 12198

Re: Encrypting device specific data

I would love to get access to such a tool (to generate FATFS/WL images on the host.) Previously I had used this project with great success: https://github.com/jkearins/ESP32_mkfatfs But I believe something has changed recently in esp-idf w.r.t. WL (a new version V2?), and the V1 -> V2 upgrade proces...
by p-rimes
Mon Aug 20, 2018 6:51 pm
Forum: ESP-IDF
Topic: [Answered]: JWT component for ESP-IDF (JSON Web Tokens)
Replies: 10
Views: 25554

Re: JWT component for ESP-IDF (JSON Web Tokens)

Only a few mbedTLS commands needed. You might find this (GPL) implementation useful, although it is GCP specific, it does overview the signing process (any functions using the mbedtls_ API) for both RS256 and ES256.

https://github.com/mongoose-os-libs/gcp ... _gcp.c#L69
by p-rimes
Tue Aug 14, 2018 10:46 pm
Forum: General Discussion
Topic: Use of cloud functions ... who are you using and what do you need?
Replies: 8
Views: 11739

Re: Use of cloud functions ... who are you using and what do you need?

Would you know, I just went through a process of trying several different clouds and architectures on a recent project! So I can report some brief findings you might find useful. My goal in this project was lowest latency between an ESP32 submitting an event (E.g. some sensor readings), and a websit...
by p-rimes
Mon Jun 18, 2018 5:38 pm
Forum: General Discussion
Topic: Certification status (FCC, IC, et al) of ESP32-WROVER/WROOM with 8MB, 16MB flash?
Replies: 1
Views: 3518

Certification status (FCC, IC, et al) of ESP32-WROVER/WROOM with 8MB, 16MB flash?

I noticed recently that Electrodragon now has additional models of ESP-WROOM-32 module with 8MB flash, 16MB flash: http://www.electrodragon.com/product/wroom-32/ and ESP32-WROVER module (again with new 8MB or 16MB flash options): http://www.electrodragon.com/product/esp32-wrover-v4-module-based-esp3...
by p-rimes
Mon Jun 18, 2018 5:10 pm
Forum: General Discussion
Topic: Iphone & BLE disconnects
Replies: 23
Views: 29498

Re: Iphone & BLE disconnects

Just tried something that seemed to have a positive effect (for me and my iPhone!): This is one of my lesser-used old dev boards, and it has had a previous version of ESP-IDF deployed to it. I had been using 'make flash' and seeing the same issue above, but I tried a `make erase_flash flash` just no...