LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware > Linux - Embedded & Single-board computer
User Name
Password
Linux - Embedded & Single-board computer This forum is for the discussion of Linux on both embedded devices and single-board computers (such as the Raspberry Pi, BeagleBoard and PandaBoard). Discussions involving Arduino, plug computers and other micro-controller like devices are also welcome.

Notices


Reply
  Search this Thread
Old 01-07-2022, 09:03 AM   #1
frampytown
LQ Newbie
 
Registered: Jan 2022
Posts: 1

Rep: Reputation: 0
Question Looking for very low power SBC/SoM


Hi All,

I'm wondering if anyone can advise me whether a SBC/SoM with specs similar to the following exists?

I'm looking for a device which can be run from a battery for a long time, i.e., months to years. The device should be capable of hibernating most of the time, shutting everything off. It should be able to cold boot and wake from hibernate to full functionality within ~2s or so. The use case is an IoT device which can periodically read sensors, phone home, etc.

It would need:

* Linux capable micro, Arm Cortex-A series most likely.
* Modest RAM, 128-512MB.
* Moderate storage, 1GB or so, though with fast interface to allow quick hibernation and boot.
* Decent set of IO peripherals, multiple each of I2C, SPI, UARTs.
* USB (OTG preferably)
* Possibly on-board WiFi or Cellular options.

The obvious answer to this question is that I should be looking for a microcontroller based solution. I'm asking for this specifically because I've worked on products like this in the past and had a lot of trouble with the complexity required in developing the microC based solution. To be able to access proper battle-tested networking and USB stacks would be a huge win.

Thanks very much.
--Frampy
 
Old 01-07-2022, 12:56 PM   #2
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,503

Rep: Reputation: Disabled
Maybe look at Raspberry Pi, lots of commercial business use them.
 
Old 01-07-2022, 03:19 PM   #3
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,883
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Look at ATMEL
 
Old 01-08-2022, 12:41 PM   #4
TheTKS
Member
 
Registered: Sep 2017
Location: Ontario, Canada
Distribution: Slackware, X/ubuntu, OpenBSD, OpenWRT
Posts: 361

Rep: Reputation: 243Reputation: 243Reputation: 243
I'll take a swing: if you want Linux on it, then one of the Pi's - RaspberryPi, BananaPi, OrangePi... You could look SlackwareARM's or OpenBSD's websites for a few examples of what they can run on.

If you want just a microcontroller board, then something along the lines of STM32, ESP32, Arduino...

There are so many, some use ARM and some use other. You're going to have to dig yourself for what meets your needs.

I'll follow up this post with a few links.

TKS
 
Old 01-08-2022, 12:58 PM   #5
TheTKS
Member
 
Registered: Sep 2017
Location: Ontario, Canada
Distribution: Slackware, X/ubuntu, OpenBSD, OpenWRT
Posts: 361

Rep: Reputation: 243Reputation: 243Reputation: 243
ESP32
https://www.espressif.com/

STM32
https://www.st.com/content/st_com/en.html
and more specfically
https://www.st.com/en/microcontrolle...rtex-mcus.html
https://www.st.com/en/microcontrolle...rtex-mpus.html
I just saw they have a Linux distribution

An ESP32 dev board I picked up to play around with:
https://www.banggood.com/ESP32-Devel...r_warehouse=CN

For just a few examples of what Slackware and OpenBSD have been run on and how to install them. Might be of some use, even if you install other OSs:
https://arm.slackware.com/slackwarearm-devel/
https://docs.slackware.com/ [ search "ARM" ]
https://cdn.openbsd.org/pub/OpenBSD/.../INSTALL.arm64
https://cdn.openbsd.org/pub/OpenBSD/.../INSTALL.armv7

Last edited by TheTKS; 01-08-2022 at 01:07 PM. Reason: Added OpenBSD 32 bit and SlackwareARM resources
 
Old 11-25-2022, 08:39 PM   #6
davegravy
LQ Newbie
 
Registered: Nov 2022
Posts: 2

Rep: Reputation: 1
https://conclusive.pl/devices/product/KSTR-SAMA5D27
https://www.acmesystems.it/roadrunner with the Berta D2 dev board.

Both based on the same chipset. I've been trying to get them working for my project. They're the lightest SBCs I've found, but still power hungry next to a uC. Battery-backed RTC which helps for long sleeps between sensor reads. Idle power consumption I'm seeing out of the box is around ~0.5W, I haven't measured sleep. Conclusive claims their idle power is a good bit lower than I measured but I haven't done any optimizations to test that.

The KSTR hangs on reboot out of the box, and I've had to mess with kernel config and DT a good bit just to get the USB host working for full speed (rather than high speed) devices. Conclusive quoted me a pretty significant sum to investigate the reboot issue.
 
1 members found this post helpful.
Old 11-29-2022, 06:44 AM   #7
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,359

Rep: Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333
Speed is the principal reason for high power.

I remember running a PIC µController @32.768khz to drive a clock and display. It comsumed 1mA and the whole circuit ran on batteries. Back in 2000, that was unconventional but effective.

If you don't need much speed or I/O, consider some low frequency options. I programmed my little thing in Assembler. I had a headache for a month, but then it got easy. It's amazing what you do when you're hard up.

EDIT: Just looking at post 1, you're overspeccing your hardware, and won't get the battery life. Maybe stick in a 12V 8AH sealed lead-acid battery, and you might. USB can be current expensive

Last edited by business_kid; 11-29-2022 at 06:55 AM.
 
Old 12-05-2022, 06:05 PM   #8
rclark
Member
 
Registered: Jul 2008
Location: Montana USA
Distribution: KUbuntu, Fedora (KDE), PI OS
Posts: 487

Rep: Reputation: 180Reputation: 180
Quote:
I'm looking for a device which can be run from a battery for a long time, i.e., months to years. The device should be capable of hibernating most of the time, shutting everything off. It should be able to cold boot and wake from hibernate to full functionality within ~2s or so. The use case is an IoT device which can periodically read sensors, phone home, etc.
This sounds like you don't need a full blown OS like on a RPI (which doesn't hibernate anyway I believe). Your over specifying what you need. Just something that allows you to read a few sensors, connect to another box to dump information, and go back to sleep. This seems like it could be handled by many small low power boards out there like mentioned about ESP32 or STM32 boards, maybe even the little $6 RPI Pico W board which I think supports deep sleep. Google for 'rp2040 deep sleep' for info. I am assuming it would need something like Wifi/cellular onboard to 'phone home'.
 
1 members found this post helpful.
Old 01-09-2024, 11:42 AM   #9
floppy_stuttgart
Senior Member
 
Registered: Nov 2010
Location: EU mainland
Distribution: Debian like
Posts: 1,155
Blog Entries: 5

Rep: Reputation: 107Reputation: 107
Go down with your spec: else you will need a lot of juice out of the battery.
Staggered system? low power system starting another system on-demand etc. = not the full board spec from the first boot on. Interesting board https://udamonic.com/what-is-a-scamp.html (however, similar to the previous proposal with assembler).
 
Old 01-09-2024, 11:10 PM   #10
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,902

Rep: Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052
Looking for very low power SBC/SoM

I don't know of a single board computer or embedded hardware that will match all your requirements. I can suggest some saner options.

You probably will want to have a built in eMMC module as storage and to load the OS. You will not meet your low power requirements if you include USB. You should consider a board with some gpio pins to access the device over serial console while you develop it. The bootloader should be in SPI flash memory. A sd card is useful, but as I understand it, uses some significant power. Maybe lower the requirements of usb otg or usb ports to a single micro usb port.
 
Old 01-09-2024, 11:18 PM   #11
mralk3
Slackware Contributor
 
Registered: May 2015
Distribution: Slackware
Posts: 1,902

Rep: Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052Reputation: 1052
Looking for very low power SBC/SoM

Additionally, build a busybox environment as your OS. Raspbian on a raspberry pi uses a lot of space and RAM for a project like this.
 
Old 01-10-2024, 06:15 AM   #12
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,359

Rep: Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333Reputation: 2333
Don't underestimate the power savings invoolved in lowering the frequency. In 2000 I built a controller (for money) that drove a prototype display. The display was capacitive and slow. I was using a decent PIC *µController. I ran it at 32.768khz and programmed in Assembler, and it used 0.65mA.

That's how much you can save from slow frequency. I took the extra precaution of Assembler programming. You should stuff in a mobile phone battery. If you don't need cpu speed, don't supply it.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Tiny SBC runs Linux on low-power i.MX6 ULL LXer Syndicated Linux News 0 07-05-2018 11:24 AM
LXer: Low power Sitara SBC has dual GbEs and M.2 for WiFi/BT LXer Syndicated Linux News 0 07-14-2016 06:30 PM
Ideas for a low cost, low power, low noise web server/torrent box alecjtaylor Linux - Hardware 13 01-10-2012 05:26 AM
LXer: NCS Introduces Ultra-Compact, Low-Cost, Low-Power and Super-Quiet Set-top Server Appliance Platforms LXer Syndicated Linux News 0 01-29-2006 08:01 PM
A very very very very big problem!! Elbryan Linux - Software 2 09-23-2005 05:56 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware > Linux - Embedded & Single-board computer

All times are GMT -5. The time now is 08:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration