ST SensorTile kit

Discussion and questions about boards that can run MicroPython but don't have a dedicated forum.
Target audience: Everyone interested in running MicroPython on other hardware.
Post Reply
shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

ST SensorTile kit

Post by shaoziyang » Sat Dec 31, 2016 12:18 pm

I have add ST SensorTile kit support to micropython, REPL works fine, but LED (PG12) is not work. I will do more test soon.

ST SensorTile kit introduction:
http://www.stmicroelectronics.com.cn/co ... t01v1.html
SENSORTILE_board_support.ZIP
(4.68 KiB) Downloaded 292 times

photoacoustic
Posts: 24
Joined: Mon Apr 27, 2015 8:25 am

Re: ST SensorTile kit

Post by photoacoustic » Mon Jan 09, 2017 6:07 pm

Nice job. Thanks!

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: ST SensorTile kit

Post by dhylands » Mon Jan 09, 2017 6:26 pm

My first guess (as to why the LED isn't working) is that you need to enable the clock for PortG.

shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

Re: ST SensorTile kit

Post by shaoziyang » Tue Jan 10, 2017 1:22 am

dhylands wrote:My first guess (as to why the LED isn't working) is that you need to enable the clock for PortG.
Yes, it need enable PortG clock, and VddIO2.

Code: Select all

            __HAL_RCC_SYSCFG_CLK_ENABLE();
            __HAL_RCC_PWR_CLK_ENABLE();
            __HAL_RCC_GPIOG_CLK_ENABLE();
            HAL_PWREx_EnableVddIO2();

Turbinenreiter
Posts: 288
Joined: Sun May 04, 2014 8:54 am

Re: ST SensorTile kit

Post by Turbinenreiter » Tue Jan 10, 2017 5:32 pm

The only company that has stock won't ship it to me because of US trade restrictions. Even ST themselves can't ship it to me because of that.

ST is an European company.

What the hell.

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: ST SensorTile kit

Post by dhylands » Tue Jan 10, 2017 5:45 pm

I've found it in stock through Digikey.ca and mouser.com (I'm in Canada). The very bottom of this page (in the Sample & Buy section)
http://www.st.com/en/evaluation-tools/s ... t01v1.html also has a "Buy Direct" button and a "Distributor Availability" button. Clicking on the distributor availability shows 2 distributors in Europe with stock.

Post Reply