Search found 16 matches

by technosf
Tue Aug 27, 2019 6:50 am
Forum: ESP-IDF
Topic: MEMS I2S Audio and ESP-DSP FFT
Replies: 0
Views: 3694

MEMS I2S Audio and ESP-DSP FFT

I'd like to get feedback on an attempt to pull audio of a single MEMS I2S microphone on one channel and run it through the ESP-DSP FFT library... The MEMS microphone produces I2S digital audio - 32bit words per channel, 24 bits of MSB aligned data per word, of which 18bits are significant. Data on n...
by technosf
Mon Feb 25, 2019 7:17 am
Forum: ESP32 Arduino
Topic: Accessing BLE Mesh from Arduino Core
Replies: 2
Views: 6061

Re: Accessing BLE Mesh from Arduino Core

More specifically, getting access to BLE Mesh, compiling, uploading from arduino.cc

Adding arduino core to idf doesn't help here - I'd like to avoid multiple steps to get the code onto the board after writing it, which dictates merging the mesh libs into arduino core.
by technosf
Thu Feb 14, 2019 9:23 pm
Forum: ESP32 Arduino
Topic: Accessing BLE Mesh from Arduino Core
Replies: 2
Views: 6061

Accessing BLE Mesh from Arduino Core

I'd love to be able to access the BLE Mesh functionality from my Arduino apps on the ESP32, and I've been thinking about the best way to do that. I'd like to get others thoughts too.... Obviously, the best way would be if Espressif rolled BLE Mesh into arduino-esp32 in the medium to long term, but r...
by technosf
Wed Jan 02, 2019 6:03 pm
Forum: General Discussion
Topic: Mapping extern C calls to ASM - parameter passing and the linker
Replies: 4
Views: 7599

Re: Mapping extern C calls to ASM - parameter passing and the linker

Exactly right, Sprite.

Thank you so much for your help and encouragement - I feel the week I've spend digging into this has been very productive and, weirdly given this is assembler, fun :lol: Learning a lot!
by technosf
Mon Dec 31, 2018 11:14 pm
Forum: General Discussion
Topic: Mapping extern C calls to ASM - parameter passing and the linker
Replies: 4
Views: 7599

Re: Mapping extern C calls to ASM - parameter passing and the linker

Thanks for the pointers, Sprite: I do not want to use inline asm - I did find the Xtensa ISA guide and am working my way through it. It's a little dry - but elsewhere I have not found much information from the point of view of basic Xtensa ASM routine setup and housecleaning. But it's been fun exper...
by technosf
Sat Dec 29, 2018 2:17 am
Forum: General Discussion
Topic: Mapping extern C calls to ASM - parameter passing and the linker
Replies: 4
Views: 7599

Mapping extern C calls to ASM - parameter passing and the linker

Hit there, I've decided to learn ASM again after a long hiatus, and I'm using Arduino Core C to call a basic test .S file I'm linking in. The call passes some parameters in and expects one back. I can see the in bound params hit A10 and A11, and sometime I can ASM to complete a call and return somet...