FLOSS Weekly Episode 869: Linux On Your Toaster

This week Jonathan chats with Andrei, Mahir, and Praneeth, live on location at Texas Instruments! The team at TI has been working hard to provide really good Open Source support for Sitara processo…

Hackaday
FLOSS Weekly Episode 869: Linux On Your Toaster

This week Jonathan chats with Andrei, Mahir, and Praneeth, live on location at Texas Instruments! The team at TI has been working hard to provide really good Open Source support for Sitara processo…

Hackaday
BeagleConnect Zepto – A “$1 computer” based on TI MSPM0L1117 Cortex-M0+ MCU

BeagleBoard.org Foundation's BeagleConnect Zepto "$1 computer" is an upcoming open-source hardware board powered by Texas Instruments MSPM0L117 Cortex-M0+ MCU, part of the MSPM0 family introduced in 2023. It's a tiny board with mikroBus-compatible headers, a TAG-CONNECT JTAG connector, two Qwiic connectors for expansion (or one Qwiic connector + USB-C depending on the variant), Boot and Reset buttons, and an RGB LED. BeagleConnect Zepto specifications: MCU - Texas Instruments MSPM0L117 CPU - 32MHz Arm Cortex-M0+ core Memory - 16KB SRAM Storage - 128KB dual-bank flash Package - QFN32 (5x5 mm) USB - Optional USB-C port for power (multiplexed with one of the Qwicc JST connectors) Expansion mikroBUS headers supporting a choice of about 2,000 ClickE add-on boards; one of the sides is compatible with some Raspberry Pi HATs (note limited to 12 pins) Up to 2x Qwicc connectors with full Grove function: I2C, UART, ADC, GPIO Debugging - 8-pin TAG-CONNECT JTAG

CNX Software - Embedded Systems News

Worked out a handy way to deploy software to a PocketBeagle SBC today.

The USB port enumerates a CDC-ACM serial interface (console) and a CDC-Ethernet port, however by default, there's no route to the Internet. To connect it to the Internet, you must set your machine up as a router, and make it use your host as a default route.

Alternatively, you direct things to use a HTTP proxy. Like this:

https://proxypy.readthedocs.io/en/latest/

```
log.info("Sending deployment script")
os.system(
"scp deploy.sh [email protected]:/tmp"
)

# Send the deployment script over via SSH
with proxy.Proxy(port=0) as p:
log.info("Running deployment script")
os.system(
"ssh -R 8080:localhost:%d [email protected] bash -ex /tmp/deploy.sh" % p.flags.port
)
```

In the top of `deploy.sh`:

```
# Never sure whether things use upper or lower case here
export HTTP_PROXY="http://localhost:8080/"
export http_proxy="http://localhost:8080/"
export HTTPS_PROXY="http://localhost:8080/"
export https_proxy="http://localhost:8080/"
```

(Some applications use upper case, others use lower case.)

Now `apt-get`, `git` and friends, can pull files over HTTP/HTTPS via your proxy.

The same technique would work with the Raspberry Pi Zero family.

#Python #Proxy #BeagleBoard #RaspberryPi

Proxy.Py 2.4.11.dev3+gfec682b documentation

… does anyone have any contacts at #Beagleboard? 😉
… like many of you, I’m curious about this (and the sentence I quoted is directly from the linked page). The only solution is for the #Beagleboard folks to send me a badge so I can fully research it 😉

BeagleBadge is a $99 is an open source wearable with an ePaper display, sensors, and wireless radios

The BeagleBadge is a new ePaper display that’s designed to be worn like the paper badges you’d wear at a conference.

But with a 4.2 inch ePaper display, a dual-core Arm Cortex-A53 processor, support for WiFi 6, Bluetooth 5.4, LoRa, and a variety of sensors and buttons, it can do a lot more than show your name and title to other folks. It’s available for pre-order now for $99.

Since the […]

#beaglebadge #beagleboard #beagleboardOrg #epaper #openHardware #wearables Read more: https://liliputing.com/beaglebadge-is-a-99-is-an-open-source-wearable-with-an-epaper-display-sensors-and-wireless-radios/
BeagleBadge – A Linux-powered 4.2-inch ePaper badge based on TI Sitara AM62L32 SoC

The BeagleBoard.org Foundation has just introduced the BeagleBadge featuring a 4.2-inch ePaper display and a Linux-capable Texas Instruments Sitara AML62L32 dual-core Cortex-A53 SoC. It's quite feature-rich for a badge, as it offers WiFi 6, Bluetooth 5.4 LE, and LoRa/LoRaWAN connectivity, various motion and environmental sensors, a USB 2.0 host port, Mikrobus, Grove, and QWIIC expansion connectors, a 4-way joystick, a buzzer, and a range of buttons and LEDs. BeagleBadge specifications: SoC - Texas Instruments Sitara AM62L32 dual-core Arm Cortex-A53 processor @ 1.25GHz System Memory - 256 MB (128M x 16bit) LPDDR4 @ 1600 MHz Storage 4GB eMMC flash 256Mbit OSPI flash 32Kbit EEPROM MicroSD card slot Display 4.2-inch ePaper display via 24-pin FPC Connector MIPI DSI connector for LCD Wireless 2.4 GHz WiFi 6 + Bluetooth 5.3 via BeagleMod CC3301-1216 module with MHF4 Connector LoRaWAN via Wio SX1262 module with u.FL Connector USB USB 2.0 Type-A host port USB Type-C

CNX Software - Embedded Systems News
After my initial struggles with the BeagleV-Fire in a previous video, I succeeded in getting Java 25 running on RISC-V-powered BeagleV-Fire! Let me walk you through the journey and the steps I took to make it work. https://www.youtube.com/watch?v=p08u_g7hFwE&embeds_referring_euri=https%3A%2F%2Fwebtechie.be%2F&source_ve_path=OTY3MTQ The Challenge...
#beagleboard #javaonriscv #JavaOnSingleBoardComputers #riscv
https://foojay.io/today/i-got-java-25-running-on-the-risc-v-beagleboard-beaglev-fire/
I Got Java 25 Running on the RISC-V BeagleBoard BeagleV-Fire

YouTube