-
For those of you that don't know what a mindmap is, it is a visual representation of parts of an idea. Such as from beggining to end or other...
In this case the pins(or holes) on the pyboard.
http:/…
-
Have a "platform" folder with subdirs for each platform with their platform dependent code inside (i.e., no asembler code on the core) like PyMite does. This will make more clear where to look and how…
-
Noticed Lua is now running in this tiny $4 WiFi MCU; any chance for Micro Python?
https://github.com/nodemcu/nodemcu-firmware
-
Hi in latest version qstlink2_1.1.1.exe or qstlink2_console_1.1.1.exe my STM32F405RGT MCU is not detected anymore
(it was detected with success with qstlink2_1.0.3.exe & qstlink2_console_1.0.3.exe)
De…
-
I'd like to start adding support for the Freescale Kinetis devices I'm using. I was thinking something like the following for the directory structure:
```
hal ->
kinetis ->
MK20DX ->
iome…
-
My STM32 board doesn't have VBUS connected to PA9, so I need to disable hardware VBUS sensing. This is done with:
OTG_FS_GCCFG |= (1
-
Hi,
Found some fast math functions here:
http://code.google.com/p/math-neon/source/browse/trunk/?r=28
There are two versions of each function, neon and a fast software approximation, the library is re…
-
It looks like it is possible to link to libgcc.a with the stm port of micropython without affecting the mit license. Gcc contains a runtime library library exception.
References:
http://gcc.gnu.org/…
-
I'm trying to do something along the lines of this in Python:
``` python
class pyb.Gpio(object):
INPUT = 0
OUTPUT = 1
PULL_NONE = 0
def function():
...
```
I tried this:
``` …
-
The lcd module currently only allows control of the specific board Damien has.
Whats the plan for this module ?
What aspects of in-built stm lcd controller will it expose ?