Problem building firmware for the Lite

The official pyboard running MicroPython.
This is the reference design and main target board for MicroPython.
You can buy one at the store.
Target audience: Users with a pyboard.
Post Reply
User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Problem building firmware for the Lite

Post by pythoncoder » Mon Apr 11, 2016 7:04 am

I'm issuing

Code: Select all

make clean
make board=PBLITEV10
sudo make deploy
Everything appears to behave normally except that the board doesn't work with LED's dimly lit - I believe this signifies an un-initialised board. Using dfu_util makes no difference. I can install and run the latest build from the website.

I can also successfully run

Code: Select all

make clean
make board=PYBV10
sudo make deploy
this deploys and runs on a V1.0 board. It is behaving as if the build system were creating invalid build for the Lite.
Peter Hinch
Index to my micropython libraries.

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

Re: Problem building firmware for the Lite

Post by dhylands » Mon Apr 11, 2016 7:11 am

Just a note:

Code: Select all

make clean
is the same thing as

Code: Select all

make BOARD=PYBV10 clean
You want to use:

Code: Select all

make BOARD=PYBLITEV10 clean
make BOARD=PYBLITEV10
make BOARD=PYBLITEV10 deploy
I see several mistakes:
1 - You didn't specify BOARD= on your clean or deploy
2 - You used board= instead of BOARD=
3 - You used PBLITEV10 instead of PYBLITEV10

Some of those might be typos, but I figured I'd point them out.

User avatar
platforma
Posts: 258
Joined: Thu May 28, 2015 5:08 pm
Location: Japan

Re: Problem building firmware for the Lite

Post by platforma » Mon Apr 11, 2016 10:00 am

Gnumake is indeed case sensitive :)

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: Problem building firmware for the Lite

Post by pythoncoder » Mon Apr 11, 2016 10:07 am

Thank you, now sorted.
Peter Hinch
Index to my micropython libraries.

Post Reply