Jump to content

RSS Bot

Bot
  • Posts

    4208
  • Joined

  • Last visited

    Never

Everything posted by RSS Bot

  1. Nicolai Electronics’ rp2040-ic2-interface open-source firmware for the Raspberry Pi Pico (or other Raspberry Pi RP2040 boards) converts the board into an I2C to USB bridge to connect any I2C sensor or module to a PC or other hardware without GPIOs. The firmware implements the USB protocol expected by the I2C-Tiny-USB kernel driver used by the original I2C-Tiny-USB project for Microchip ATMega 8-bit AVR microcontrollers. The RP2040 is however not a fork of the original project, but instead a complete re-implementation of the firmware. You’ll need to connect your I2C sensor, display, or another module to the SDA (GPIO 2) and SCL (GPIO 3) pins of the Raspberry Pi RP2040 microcontroller and flash the “pre-release” firmware to the board. You’ll find it together with the source code written in C language on GitHub. Note the project has a “proof of concept status” and more testing is needed to make sure that [...] The post RP2040 firmware converts Raspberry Pi Pico into a an I2C to USB bridge appeared first on CNX Software - Embedded Systems News. View the full article
  2. Description Cosmetic fix. View the full article
  3. It’s that time of year… CNX Software giveaway week! For the 9th edition, we’ll have seven items to give away, five that I will send myself, and two that will be sent directly from two companies that accepted to add their own products to the giveaway. We’ll start the giveaway with NanoPi R5S router based on Rockchip RK3568 SoC with 2 GB DDR4 RAM, 8GB eMMC flash plus an M.2 socket for NVMe SSD, two 2.5GbE Ethernet ports, one Gigabit Ethernet port, as well as HDMI 2.0 video output and two USB 3.0 ports. I reviewed the NanoPi R5S router with OpenWrt and Ubuntu 20.04 “FriendlyCore”, but I had to call this a “preview” since 2.5GbE was far from optimal, sometimes only a little faster than with a Gigabit Ethernet link. But I can see the company has released new images, including one based on the latest OpenWrt 22.03, [...] The post Giveaway Week – NanoPi R5S router appeared first on CNX Software - Embedded Systems News. View the full article
  4. Description Update odroidxu4-current kernel to 5.4.223. How Has This Been Tested? [x] Reboot of my Odroid HC1 Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [x] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  5. Description UEFI kernel, current and edge, can build both, can generate rootfs, grub unconfigured. Jira reference number AR-1390 How Has This Been Tested? [x] Build tests only Checklist: [x] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  6. Beelink have launched their first Intel Alder Lake mini PC calling it the SEi12. Featuring a mobile 12th gen Core-i5-1235U processor it is also their first mini PC to incorporate a PCIe4 NVMe slot. Beelink kindly sent one for review and I’ve looked at the performance running both Windows 11 and Ubuntu 22.04. Beelink SEI12 hardware overview The Beelink SEi12 physically consists of a 126 x 113 x 42mm (4.96 x 4.45 x 1.65 inches) square metal case with a new and innovative waterproof fabric-covered top. As an actively cooled mini PC, it uses Intel’s Alder Lake Core i5-1235U processor which has a thread count of 12 with 2 ‘performance’ cores boosting to 4.40 GHz and 8 ‘efficient’ cores boosting to 3.30 GHz and includes Intel’s Iris Xe Graphics. The front panel has an illuminated power button, a 3.5mm headphone jack, a data-only Type-C USB 3.1 port, dual USB 3.1 [...] The post Beelink SEi12 Alder Lake mini PC review with Windows 11, Ubuntu 22.04 appeared first on CNX Software - Embedded Systems News. View the full article
  7. Description Move into new structure which will be cleaned further. Stage I is moving legacy patches from main folder & removing obsolete. ├── legacy │ ├── board_bananapir2 │ ├── board_imx7sabre │ ├── board_odroidc1 │ ├── board_odroidm1 │ ├── board_odroidxu4 │ ├── board_orangepizero2 │ ├── board_rock-5b │ ├── board_rockpi-s │ ├── u-boot-clearfog │ │ ├── board_clearfogbase │ │ ├── board_clearfogpro │ │ ├── target_mmc │ │ ├── target_sata │ │ ├── target_sdhc │ │ ├── target_spi │ │ └── target_uart │ ├── u-boot-helios4 │ │ ├── board_clearfogbase │ │ ├── board_clearfogpro │ │ ├── board_helios4 │ │ ├── target_spi │ │ └── target_uart │ ├── u-boot-imx6 │ │ ├── board_cubox-i │ │ ├── board_udoo │ │ ├── board_wandboard │ │ ├── target_sata │ │ ├── target_sdhc │ │ └── target_spi │ └── u-boot-s5p6818 ├── u-boot-media ├── u-boot-meson64 │ ├── board_bananapim5 │ ├── board_jethubj100 │ ├── board_jethubj80 │ └── board_radxa-zero ├── u-boot-rk322x │ └── board_rk322x-box ├── u-boot-rk35xx │ └── board_rock-3a ├── u-boot-rockchip │ ├── board_miqi │ ├── board_tinkerboard │ └── board_xt-q8l-v10 ├── u-boot-rockchip64 │ ├── board_nanopi-r4s │ ├── board_rk3318-box │ ├── board_rockpi-s │ ├── board_station-m1 │ └── board_station-p1 ├── u-boot-sunxi │ ├── board_lime2 │ └── board_olimex-som-a20 ├── v2020.04 └── v2022.04 ├── board_espressobin └── board_macchiatobin-doubleshot Jira reference number AR-1389 How Has This Been Tested? [x] Each moved was manually tested. Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  8. Description Change to supported action component. Jira reference number AR-1388 How Has This Been Tested? [x] Generate image Checklist: [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  9. Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Jira reference number [AR-9999] How Has This Been Tested? Before this change, it randomly got the incorrect dram size on booting: When applying this change, it always gets the correct dram size: Checklist: [ *] My code follows the style guidelines of this project [ *] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ *] My changes generate no new warnings [ *] Any dependent changes have been merged and published in downstream modules View the full article
  10. e-con Systems e-CAM20_CURB is a 2.3 MP fixed focus color camera designed for the Raspberry Pi 4, and the company has sent us a sample for evaluation and review. We’ll start by providing specifications, before checking out the package content, connecting the camera to the Raspberry Pi 4 with a DIY LEGO mount, showing how to access the resources for the camera, and trying tools provided in the Raspberry Pi OS or Yocto Linux image. e-CAM20_CURB specifications The camera is comprised of two boards with the following specifications: eCAM217_CUMI0234_MOD full HD color camera with 4-lane MIPI CSI-2 interface ON Semiconductor AR0234CS CMOS sensor with 1/2.6″ optical form-factor Global Shutter Onboard ISPimage sensor from ON Semiconductor Uncompressed UYVY streaming HD (1280 x 720) up to 120 fps Full HD (1920 x 1080) up to 65 fps 2.3 MP (1920 x 1200) up to 60 fps External Hardware Trigger Input ACC-XVRNX-MIPICAMERA adapter [...] The post Getting started with e-CAM20_CURB camera for Raspberry Pi 4 appeared first on CNX Software - Embedded Systems News. View the full article
  11. rbaron’s b-parasite is an open-source hardware Bluetooth LE plant watering sensor that can measure soil moisture and ambient temperature/humidity/light and works with ESPHome, Home Assistant, or any macOS or Linux platforms including the Raspberry Pi boards. It is based nRF52840 multi-protocol wireless microcontroller, so stanvn decided to add Zigbee support to the b-parasite through the “Zigbee Plant Sensor” firmware based on the Nordic Semi nRF5 SDK for nRF52 series of SoCs and working with Zigbee2MQTT. Let’s have a look at b-parasite hardware specifications first: Wireless MCU – Nordic Semi nRF52840 Arm Cortex-M4F multi-protocol wireless microcontroller with Bluetooth LE 5.0 and 802.15.4 (Zigbee/Thread) radios, 1024 KB flash, 256KB SRAM Sensors Capacitive soil moisture sensor Sensirion SHTC3 temperature and humidity sensor ALS-PT19 light sensor Power – ~200 mAh CR2032 coin-cell battery estimated to last for a couple of years with readings every 10 minutes The GitHub repository for the board contains the [...] The post b-parasite Bluetooth LE plant sensor gets Zigbee support appeared first on CNX Software - Embedded Systems News. View the full article
  12. We’ve seen two announcements of high-end RISC-V cores this week with the SiFive P670 and Andes AX65 processors each with a 4-way out-of-order people, but Alibaba’s T-Head Semiconductor Xuantie C908 is a little different with a dual-issued, 9-stage in-order pipeline and support for the RISC-V Vector extension acceleration targeting mid-range AIoT applications. The C908 64-bit RISC-V core adopts the RV64GCB[V] instruction and complies with the RVA22 profile for better compatibility with Android and other “rich” operating systems. The company says its performance is between the C906 and C910 cores introduced in 2020 and 2019 respectively. XuanTie C908 highlights: RV32GCB[V] 32-bit and RV64GCB[V] 64-bit RISC-V architectures with Bit manipulation and (optional) Vector operations extensions Support for RV32 COMPAT mode which allows for 64-bit RISC-V CPUs to run 32-bit binary code, and was merged into Linux 5.19. XuanTie extensions, including Instruction, Memory Attributes Extension (XMAE). RVA22 profile compatibility Cluster of 1 to [...] The post T-Head XuanTie C908 RISC-V core targets AIoT applications appeared first on CNX Software - Embedded Systems News. View the full article
  13. Mele PCG02 Pro is a mini PC stick / PC-on-a-stick powered by either an Intel Celeron J4125 Gemini Lake processor or a more recent Celeron N5105 Jasper Lake processor, with support for M.2 NVMe/SSD storage, but only for the Gemini Lake model. The computer is also equipped with 8GB LPDDR4 memory, 128GB to 512GB eMMC flash, two HDMI 2.0 ports capable of driving two independent displays, a Gigabit Ethernet port, WiFi 5 or 6 connectivity, and more. MeLE PCG02 Pro specifications: SoC (one or the other) Intel Celeron J4125 quad-core Gemini Lake Refresh processor @ 2.0 / 2.7 GHz (Boost) with 12EU Intel UHD 600 graphics @ 250 / 750 MHz; 10W TDP Intel Celeron N5105 quad-core Jasper Lake processor @ 2.0 / 2.9 GHz (Boost) with 24EU Intel UHD 605 graphics @ 450 / 800 MHz; 10W TDP System Memory & Storage MeLE PCG02 Pro (J4125) 8GB LPDDR4-2133 [...] The post Mele PCG02 Pro mini PC stick supports M.2 NVMe or SATA SSD appeared first on CNX Software - Embedded Systems News. View the full article
  14. Andes Technology has unveiled the high-end AndesCore AX60 series out-of-order 64-bit RISC-V processors at the Linley Fall Processor Conference 2022 with the new cores designed for compute-intensive applications such as advanced driver-assistance systems (ADAS), artificial intelligence, augmented/virtual reality, datacenter accelerators, 5G infrastructure, high-speed networking, and enterprise storage. AndesCore AX65 is the first member of the family and supports RISC-V scalar cryptography extension and bit manipulation extension. It is a 4-way superscalar core with Out-of-Order (OoO) execution in a 13-stage pipeline and can fetch 4 to 8 instructions per cycle. The company further explains the AX65 core then decodes, renames, and dispatches up to 4 instructions into 8 execution units, including 4 integer units, 2 full load/store units, and 2 floating-point units. The AX65’s memory subsystem also includes split 2-level TLBs (translation lookaside buffers) with up to 64 outstanding load/store instructions. Up to eight AX65 cores (or should that then be [...] The post Andes unveils AndesCore AX65 Out-of-Order RISC-V core for compute intensive applications appeared first on CNX Software - Embedded Systems News. View the full article
  15. Axiomtek iNA200 is a DIN-rail mountable cybersecurity gateway powered by a choice of Elkhart Lake Atom x6000E-series processor and designed for operational technology (OT) network security. The fanless gateway comes with up to 32GB RAM, supports SATA storage, offers 2.5GbE & Gigabit Ethernet (RJ45/SFP) networking, and as it is designed for industrial settings, can take input from two 9V to 36V power sources and operate in the -40°C to 70°C temperature range. Axiomtek iNA200 specifications: SoC – Intel Atom x6212RE/x6414RE dua-core or quad-core Elkhart Lake processor with 16 EU Intel UHD Graphics; TDP: x6212RE: 6W, x6414RE: 9W System Memory – Up to 32GB DDR4-3200 SO-DIMM Storage – Support for 2.5-inch SATA III SSD, optional eMMC flash Video Output – HDMI Networking 2x Gigabit Ethernet RJ45 ports via Marvell 88E1512 controller with LAN Bypass 2x 2.5GbE RJ45 ports via Intel I225-IT controller with LAN Bypass and TSN function 2x Gigabit Ethernet [...] The post Axiomtek iNA200 DIN-Rail cybersecurity gateway offers 6x Ethernet ports up to 2.5GbE appeared first on CNX Software - Embedded Systems News. View the full article
  16. description of the problem https://forum.armbian.com/topic/15964-firfly-rk3399-have-not-been-booting-up-reasent-images-from-armbian/?do=findComment&comment=152547 View the full article
  17. Description Le potato mainline vendor asound.state to fix analog out issues View the full article
  18. Arduino Make Your UNO Kit is a kit with two boards, one for the microcontroller and the other for audio, and all components required that can be used to learn how to solder and then Arduino programming. Once soldering and assembly are complete you’ll hopefully get a working Arduino UNO and an audio synthesizer shield. But before you get there, you’ll need to equip yourself with a soldering iron and some soldering tin to solder the components below to the two PCBs. Package content: Arduino Make Your UNO board’s components Make Your UNO PCB Socket for ATMega328p MCU Microchip ATmega328p 8-bit AVR microcontroller USB Type-C serial adapter board Various 1k Ohm, 10k Ohm. and 1M Ohm resistors 3x Ceramic capacitors (22pF) 3x Electrolytic capacitors (47uF) 7x Polyester capacitors (100nF) 1x 1N4007 diode 1x 16MHz crystal 4x Yellow LEDs, 1x Green LED 1x Push-Button 1x MOSFET 2x I/O connectors 6-pin header [...] The post Learn soldering and programming with the Arduino Make Your UNO Kit appeared first on CNX Software - Embedded Systems News. View the full article
  19. Description ssv6051 driver has been plagued by missing ARP request handling, so the wifi did not answer to identification requests on broadcast packets. This PR fixes the general problem related to broadcast and multicast handling. Also remove a unapplicable patch from a LE imported patch series. How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [x] Build edge kernel package and test on live system [x] Build current kenrel package and test on live system Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [x] I have made corresponding changes to the documentation [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  20. The DongshanPI-D1s development board is comprised of a soldered-on Allwinner D1s RISC-V system-on-module board (SoM) and a carrier board with two 40-pin headers and a 2.0mm dedicated header. This development board is specifically designed to teach programming with a focus on the RISC-V architecture. The development board was designed by 100ask. They previously designed the Dongshan NeZha STU a development board based on the Allwinner D1. The main difference between the two is that 100ask did not include the Ethernet and HDMI interfaces on the DongshanPI-D1s board. The pinout of the headers is also slightly different because they opted to make the headers compatible with the widely sued 40-pin GPIO from Raspberry Pi single board computers. DongshanPI-D1s preliminary specifications: D1s Core Lite SoC – Allwinner D1s single-core XuanTie C906 64-bit RISC-V processor @ 1.0 GHz with with 32 KB I-cache + 32 KB D-cache Memory – 64 MB DDR2 (SIP) [...] The post DongshanPI-D1s – An Allwinner D1s RISC-V development board designed to teach programming appeared first on CNX Software - Embedded Systems News. View the full article
  21. A typical chip for AI or ML inference would include an NPU, a DSP, a real-time CPU, plus some memory, an application processor, an ISP, and a few more IP blocks. Quadric Chimera GPNPU (general purpose neural processor unit) IP combines the NPU, DSP, and real-time CPU into one single programmable core. According to Quadric, the main benefit of such design is simplifying system-on-chip (SoC) hardware design and subsequent software programming once the chip is available thanks to a unified architecture for machine learning inference as well as pre-and-post processing. Since the core is programmable it should also be future-proof. Three “QB series” Chimera GPNPU cores are available: Chimera QB1 – 1 TOPS machine learning, 64 GOPS DSP capability Chimera QB4 – 4 TOPS ML, 256 GOPS DSP Chimera QB16 – 16 TOPS ML, 1 TOPS DSP Quadric says the Chimera cores can be used with any (modern) manufacturing process [...] The post Quadric Chimera GPNPU IP combines NPU, DSP, and real-time CPU into one single programmable core appeared first on CNX Software - Embedded Systems News. View the full article
  22. SiFive has announced two new RISC-V Performance cores with the P670 and P470 processors with RISC-V Vector Extension for AI/ML, media and sensor processing, and designed for high volume applications such as wearables, smart home, industrial automation, AR/VR, and other consumer devices. The P670 is comparable to the Cortex-A78, and the P470 is comparable to the Cortex-A55. Both support the standardized RISC-V RVA22 profile for better OS compatibility and implement RISC-V Vector v1.0 and Vector Cryptography extensions. The SiFive Performance P470 and P670 share the following features: Full RISC-V RVA22 profile compliance Full, Out-of-Order, RISC-V Vector implementation, based on the ratified RISC-V Vector v1.0 Specification RISC-V Vector Cryptography extensions SiFive WorldGuard system security Support for virtualization, including a separate IOMMU for accelerating virtualized device IO Advanced Interrupt Architecture (AIA) compliant interrupt controller with better support for Message Signal Interrupts (MSI) and virtualization Enhanced scalability with fully coherent multi-core, multi-cluster, with [...] The post SiFive P670 and P470 RISC-V processors feature RISC-V Vector Extensions appeared first on CNX Software - Embedded Systems News. View the full article
  23. MYIR Tech has launched the MYC-JX8MMA7 system-on-module combining an NXP i.MX 8M Mini quad-core Arm Cortex-A53 processor with an AMD Xilinx XC7A25T Artix-7 FPGA. The 82 x 45mm CPU module comes with 2GB LPDDR4, 8GB eMMC flash, and 32MB QSPI Flash for the Arm processor and 256MB DDR3 and 32MB QSPI Flash for FPGA. It exposes I/Os through an MXM 3.0 edge connector and can operate in the industrial temperature range (-40 to 85°C). MYC-JX8MMA7 CPU module specifications: SoC – NXP i.MX 8M Mini with quad-core Cortex-A53 processor @ up to 1.6 (industrial) or 1.8 GHz, Cortex-M4F real-time core @ 400 MHz, Vivante GC320 and Vivante GCNanoUltra 3D/2D GPUs, 1080p60 H.265, H.264, VP8, VP9 video decoder, 1080p60 H.264 & VP8 video encoder FPGA – AMD Xilinx Artix-7 XC7A25T-2CSG325 with 23,360 logic cells, 3x GTP System Memory and Storage SoC – 2GB LPDDR4, 8GB eMMC flash, and 32MB QSPI Flash FPGA [...] The post System-on-module combines NXP i.MX 8M Mini Arm CPU and Xilinx Artix-7 FPGA appeared first on CNX Software - Embedded Systems News. View the full article
  24. Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Jira reference number [AR-9999] How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [ ] Test A [ ] Test B Checklist: [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
  25. Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Jira reference number [AR-9999] How Has This Been Tested? Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration. [ ] Test A [ ] Test B Checklist: [ ] My code follows the style guidelines of this project [ ] I have performed a self-review of my own code [ ] I have commented my code, particularly in hard-to-understand areas [ ] I have made corresponding changes to the documentation [ ] My changes generate no new warnings [ ] Any dependent changes have been merged and published in downstream modules View the full article
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines