Till Harbaum

Results 16 issues of Till Harbaum

It seems these devices aren't sold anymore. I thus made a cheap DIY solution which also works with your ESP32 sketch as well as the python scripts: https://github.com/harbaum/dotlite

The -c option is intended to remove private information as well as cached data from the image. It's intended to be used when using the image on a different pi...

From the examples it seems that only the device name and the MAC address are reported during a discovery. This was ok for classic bluetooth. But BLE can also deliver...

The following code ``` import network station = network.WLAN(network.STA_IF) station.active(True) station.ifconfig( ( '192.168.0.2','255.255.255.0','192.168.0.1','8.8.8.8' ) ) ``` works fine for me on MicroPython v1.18-133-ga57afa822 when built with IDF 4.0.2 and 4.1.1...

port-esp32

### Related area Run complex (hub/multidevice) setups connected to the BL616 host ### Hardware specification BouffaloLabs BL616 ### Is your feature request related to a problem? I recently stumbled upon...

Feature 💡

I am working with the Tang Nano 20k. This doesn't use a real ft2232 but instead runs some emulation of the ft2232 on a bl616 risc-v CPU. Now this chip...

It seems the cube software drives the dtr and rts signals of the uart while flashing in order to enable the bootloader. How are rts and dtr to be used...

Currently, the uart bitrate used for console or basic stdout via printf etc is hard coded to 2000000 bit/s in the board config like bsp/board/bl616dk/board.c: https://github.com/bouffalolab/bouffalo_sdk/blob/302e017ea06b4c75963212f7144f8800c05901f1/bsp/board/bl616dk/board.c#L204 and https://github.com/bouffalolab/bouffalo_sdk/blob/302e017ea06b4c75963212f7144f8800c05901f1/bsp/board/bl616dk/board.c#L214 Not all...

Please change this: https://github.com/bouffalolab/bouffalo_sdk/blob/81a1645805de9ebb83666946d1daebbe8fcd7025/components/usb/cherryusb/CMakeLists.txt#L45 to ``` endif() if(CONFIG_CHERRYUSB_HOST) ``` This will allow to use host and device at the same time. My use case is a device that usually acts...

What is the intended sd card clock rate? From the comments, it seems that it's supposed to stay below 25Mhz as CLK_DIV is adjusted to one for up to 25Mhz,...