Search found 43 matches
- Wed Mar 11, 2020 3:11 am
- Forum: Hardware Projects
- Topic: My pybox project
- Replies: 2
- Views: 1254
- Mon Mar 02, 2020 1:37 am
- Forum: ESP32 boards
- Topic: ESP32 : Sending String via Bluetooth
- Replies: 9
- Views: 2219
Re: ESP32 : Sending String via Bluetooth
https://github.com/micropython/micropython/pull/5363
This link has an answer to this question
This link has an answer to this question
- Tue Feb 25, 2020 5:06 am
- Forum: ESP32 boards
- Topic: ESP32 : Sending String via Bluetooth
- Replies: 9
- Views: 2219
Re: ESP32 : Sending String via Bluetooth
The same problem, I couldn't send a string longer than 20 characters/bytes. Is anyone solving?
- Wed Jan 15, 2020 1:24 am
- Forum: General Discussion and Questions
- Topic: Is EtherCAT possible to port to micropython?
- Replies: 1
- Views: 683
Is EtherCAT possible to port to micropython?
EtherCAT is the open real-time Ethernet network originally developed by Beckhoff. EtherCAT sets new standards for real-time performance and topology flexibility. EtherCAT includes master and slave, the source code is as follows: master: https://github.com/OpenEtherCATsociety/SOEM slave: https://gith...
- Wed Jul 03, 2019 12:11 pm
- Forum: General Discussion and Questions
- Topic: 3d printer firmware based on pyboard
- Replies: 17
- Views: 4234
Re: 3d printer firmware based on pyboard
I found an interesting project https://github.com/Nikolay-Kha/PyCNC Typically there is no way to control stepper motors from Linux runtime environment due to the lack of real time GPIO control. Even kernel based modules can not guarantee precise control of pulses for steppers. However, we can use a ...
- Fri Jun 28, 2019 5:18 am
- Forum: Pyboard D-series
- Topic: SPI FLASH 2 in PYBD_SF2
- Replies: 9
- Views: 2112
Re: SPI FLASH 2 in PYBD_SF2
I know you could add a SPI RAM and use it to read/write from (like a disk). I don't know if the stm32 used in the SF2 will transparently make it behave like internal RAM. You'll need to read through the datasheet and see if it supports something like that. Thank you, if there is an idea, I will try...
- Fri Jun 28, 2019 3:07 am
- Forum: Pyboard D-series
- Topic: SPI FLASH 2 in PYBD_SF2
- Replies: 9
- Views: 2112
Re: SPI FLASH 2 in PYBD_SF2
I'm not sure - you'd need to check the datasheet for the SF2 and find out what it supports for external RAM, and then see if the pins to support that are available on WBUS. And even then, I don't know what state micropython is in as far as supporting external RAM on the stm32. You'd probably need t...
- Fri Jun 28, 2019 2:30 am
- Forum: Pyboard D-series
- Topic: SPI FLASH 2 in PYBD_SF2
- Replies: 9
- Views: 2112
Re: SPI FLASH 2 in PYBD_SF2
RAM is voltaile and can be changed. Flash is non-volatile and can't be changed like RAM. In order to change flash, you need to erase a block first and then write the contents of the block with the new data. When you power off your MCU flash retains its contents and RAM doesn't. On the SF2, one of t...
- Fri Jun 28, 2019 12:54 am
- Forum: Pyboard D-series
- Topic: SPI FLASH 2 in PYBD_SF2
- Replies: 9
- Views: 2112
Re: SPI FLASH 2 in PYBD_SF2
I don't understand the difference between the two QSPI FLASH on SF2. I thought 'code execution capabilities'='Memory mapping'. I find that ESP32 supports external SPI RAM.
- Thu Jun 27, 2019 11:51 am
- Forum: Pyboard D-series
- Topic: SPI FLASH 2 in PYBD_SF2
- Replies: 9
- Views: 2112
SPI FLASH 2 in PYBD_SF2
I want to ask, is this the same as the internal RAM of the chip? Can pyboard(STM32F405) increase RAM (Memory mapping) in this way? Thanks.2MByte external flash with code execution capabilities (extends internal flash)