Search found 4 matches

by niflizn
Mon Jul 01, 2019 4:39 pm
Forum: ESP-IDF
Topic: How to handle Git submodules in forks?
Replies: 4
Views: 7512

Re: How to handle Git submodules in forks?

I ended up rewriting .gitmodules with relative paths, but replaced URLs pointing to an Espressif repo in the following style: From: [submodule "components/bt/controller/lib"] path = components/bt/controller/lib url = ../esp32-bt-lib.git To: [submodule "components/bt/controller/lib"] path = component...
by niflizn
Mon Jul 01, 2019 12:52 pm
Forum: ESP-IDF
Topic: How to handle Git submodules in forks?
Replies: 4
Views: 7512

Re: How to handle Git submodules in forks?

Thanks for the quick reply. We will try to work around the issue by rewriting the .gitmodules file for now. It might be nice to have a $SUBMODULE_BASE_URL variable or similar mechanism to point to a common repo for modules referred using relative paths, but I don't know what would be involved in thi...
by niflizn
Sun Jun 30, 2019 11:01 pm
Forum: ESP-IDF
Topic: How to handle Git submodules in forks?
Replies: 4
Views: 7512

How to handle Git submodules in forks?

Commit #008ad9a on esp-idf replaced the https***github.com/espressif/esp-idf/... URLs in .gitmodules with relative links. The switch to relative URLs for submodules has broken our fork, because they reference our repo, which does not contain mirrors of the upstream source. I suppose I could make my ...
by niflizn
Fri Sep 28, 2018 3:23 pm
Forum: ESP-IDF
Topic: BLE Channel Map for scanning
Replies: 2
Views: 4950

BLE Channel Map for scanning

On another controller we have implemented a small BLE-based mesh using advertising packets. Low latency (<150ms) and low power is an issue, and we achieve this by letting the nodes synchronize so that they communicate in certain timeslots. Each node transmits an advertisement package with dynamic da...