Changjae(Jay) Kim
Changjae(Jay) Kim
@sergeychernov please find the below link and try it. https://github.com/kaluma-project/kaluma/wiki/Build
@adrian-burlacu-software Thank you for your feedback. The first issue is known issue #531. Let me check the other issues and fix it soon. And let's discuss this topic in this...
@adrian-burlacu-software Please create issue with the [PICO-W] prefix when you find any issue. Thank you so much for your help.
@Cursor-S Thank you for using Kaluma. Now we don't have a plan for SDIO based SD Card module because RP2040 does not have SDIO hardware. We can make java script...
@glennswest I didn't start to implement dgram module so please implement it. code contribution is always welcome. Upd device driver of cyw43 is implemented but not fully tested. (https://kalumajs.org/docs/api/device-driver#network-device-driver)
IP address is network address. So you need to connect to the network. You can see the local IP address in the net module, Socket class. https://kalumajs.org/docs/api/net#socketlocaladdress
I think you want to have uploading one file which have FW, files in file system and java script source code. But we don't have a plan to support this...
this.sm.setPins() function is the same as pio_sm_set_pins_with_mask() function of Raspberrypi-pico API. Please refer this function. void [pio_sm_set_pins_with_mask](https://www.raspberrypi.com/documentation/pico-sdk/hardware.html#ga963167ca42f67f79ec5de6b47d6027d5) ([PIO](https://www.raspberrypi.com/documentation/pico-sdk/structpio__hw__t.html) pio, uint sm, uint32_t pin_values, uint32_t pin_mask) Use a state machine to...
this.sm.setPins(1 | 2 ) is the same as this.sm.setPins( 3, 0xFFFFFFFF) because the default value of the pin_mask is 0xFFFFFFFF. So I think this command can set multiple pins. Could...
@DoofyAss Sorry I don't fully understand PIO operation. I think it's better for you to ask it Raspberry Pi Forum.