element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
RFID or NFC
  • Challenges & Projects
  • Project14
  • RFID or NFC
  • More
  • Cancel
RFID or NFC
Project14: RFID or NFC Competition Received RFID and NFC Project14 Reward
  • Blog
  • Forum
  • Documents
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join RFID or NFC to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: misaz
  • Date Created: 6 Mar 2023 5:01 PM Date Created
  • Views 1178 views
  • Likes 10 likes
  • Comments 5 comments
  • STM32MP1
  • STM32MP157F-DK2
  • stm32
  • display
  • mpu
  • reward
  • linux
Related
Recommended

Received RFID and NFC Project14 Reward

misaz
misaz
6 Mar 2023
Received RFID and NFC Project14 Reward

Hello everyone.

At the middle of January I was selected as a first place winner of RFID and NFC Project14 competition and for my Custom NFC Tags project entry I won 100 USD basket. Today I received my 100 USD basket.

This time I selected only one item (in previous case I selected 49 parts) but this single part worth slightly over 100 USD. Thank you for it. Unluckily the kit went out of stock right after I sent my basket to Tariq, and I had to wait about 1,5 months

STM32MP1 Discovery (STM32MP157F-DK2)

Buy Now

The device which I ordered is STM32MP1 discovery kit. It is referred as discovery kit, but it looks more like single board computer instead of evaluation kit. There are several variants of the kit differing in SoC used and also differing in accessories. I received the most advanced kit featuring SoC with Crypto accelerator, Wi-Fi and BT connectivity and containing LCD display with touch screen.

Unboxing

Board came packaged in white box. On the side were sticker describing box content.

image

After opening package there were another more detailed description of device.

image

The first floor of the antistatic foam contains USB-C to USB-C cable:

image

And the second floor contains device itself:

image

Device come fully assembled and contains inserted SD card with prepared operating system. Kit consists of two parts: main board and display board. Boards are stacked using standoffs and interconnected by flex cable.

image

All chips of the board are on the top side:

image

Except STM32MP1 MPU chip there is power management IC, additional STM32F103C8T6 MCU acting as ST-Link, 512 MiB DDR RAM, Audio Codec, Ethernet Phy from Realtek, HDMI transmitter circuit and finally I have variant which also contains Murata 1DX Wi-Fi/BT module. Board is very flexible in terms of extensibility. At the top side of the board there is Raspberry Pi compatible connector. At the other side (at bottom) there is Arduino compatible connector:

image

Power up

After power up ST logo is the first thing appearing on the display.

image

Then background of environment appears:

image

And then menu with some demo apps appears.

image

Here you can for example see demo of 3D graphics accelerator showing box with textures rotating in all three directions and by touching and dragging you can move it on the screen. Animation is of course completely smooth and there are no lags.

image

Board runs Linux. It runs distribution provided by ST. You can connect mouse and keyboard to the board, open terminal and run common Linux commands:

image

STM32MP1

The core of the board STM32MP1 MPU.

The STM32MP1 is SoC containing two CPU cores. One of them is Cortex-A7 running up to 800 MHz and secondary core is Cortex-M4 which you can use like a standard STM32 MCU. Cores can communicate and share internal infrastructure of the chip. MPU hardware design is similar to Azure Sphere on MT3620 platform which also have combination of Cortex-A7 and M4 cores but in terms of software platforms are completely different. In Azure Sphere A7 core runs Azure Sphere OS which is almost invisible to user and runs fully autonomously, in opposition on this STM32MP1 board A7 core is fully open, and you can any system you want on it.

My opinion is that this board is good for needs when microcontroller is required but some higher performance device is needed. Imagine for example ADC logger. If you want to log to SD card it is OK to go with regular STM32 MCU but if you need to log data to external hard drive then you are out of luck, or it would be very hard to do it with pure MCU. With this MPU it is easy. This SoC combines both worlds: It has realtime Cortex-M4 core behaving like a standard STM32 microcontroller, and it has also core on which you can run Linux and use full infrastructure of Linux kernel like thousands of drivers, full support for almost any USB device, full-featured TCP/IP stack, full support for graphical interface and window system and so on. Implementing these things on MCU is complicated, sometimes impossible and results are usually worse due to MCU limitations. I think the device best fit applications in which you MCU core cooperates with Linux system and together makes some interesting system.

Core running Linux runs at 800 MHz which is not so high in comparison with for example Raspberry Pi. It is not good for high performance computation but for embedded systems it suits well, I think.

The good part is that ST build fantastic documentation for STM32MP1 SoC and this board, so even if you run to any issue, you most probably find answer using Google in few seconds. Today It saved me several hours of troubleshooting and learning.

Conclusion

This is all for my description of reward which I received today.

At the end I would like to thank Element14 for organising and sponsoring Project14 competitions, Tariq Ahmad, Dan Zima and other Element14 staff for patience when organising contest and ordering rewards, judges for their time when selecting winners and also all readers who read blogs here on element14 like this one. Thank you all.

  • Sign in to reply

Top Comments

  • Jan Cumps
    Jan Cumps over 2 years ago +1
    The mcu will allow you to do time critical processes, while the mpu runs an OS. Cool. Maybe it's also possible to make the mpu deep-sleep and wake up by the controller? That 'd be interesting...
Parents
  • obones
    obones over 2 years ago

    Congratulations on your well deserved win!
    Also thank you for this nice review of a board that looks indeed very promising.

    Do you happen to know who the other winners are? I must have missed the announcement somehow.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • misaz
    misaz over 2 years ago in reply to obones

    Thank you for feedback!

    Here is the winner announcement blog:  Winners Announcement: Exploring the Modern World with RFID and NFC!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • misaz
    misaz over 2 years ago in reply to obones

    Thank you for feedback!

    Here is the winner announcement blog:  Winners Announcement: Exploring the Modern World with RFID and NFC!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube