Jump to content

RSS Bot

Bot
  • Posts

    4207
  • Joined

  • Last visited

    Never

Everything posted by RSS Bot

  1. Contributing to the Vulkan Working Group since 2015, Jason has continues to make a significant impact. His expertise and dilligence has helped to shape the group and we're proud to see his hard work see some well earned spotlight. View the full article
  2. The exFAT file system is about to get faster in Linux 6.2, at least when creating files and directories, with the performance boost especially noticeable on low-end processors. Microsoft released the exFAT specification and announced Linux support in August 2019, which was followed by a new exFAT implementation in Linux 5.7 (June 2020) from Samsung. But people are still working on improving exFAT Linux support, and Yuezhang Mo, an engineer at Sony, committed a patchset for Linux 6.2 that reduces repeated traversal of directory entries to boost the performance of exFAT: After traversing all directory entries, hint the empty directory entry no matter whether or not there are enough empty directory entries. After this commit, hint the empty directory entries like this: 1. Hint the deleted directory entries if enough; 2. Hint the deleted and unused directory entries which at the end of the cluster chain no matter whether enough [...] The post Linux 6.2 exFAT update to improve performance when creating files and directories appeared first on CNX Software - Embedded Systems News. View the full article
  3. Description Increase the maximum number of AP connected clients to 16 instead of 4 for ESP8089 driver for rk322x family on kernels 5.15, 5.19, 6.0 and 6.1. The patch is trivial How Has This Been Tested? [x] Packages for kernel 6.1 have been compiled and installed onto a running installation [x] The driver has been tested with up to 6 connected clients and worked with no issues 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
  4. It’s now possible to make use of the Pinecil V2 soldering iron‘s Bluetooth LE connectivity through a web-based interface used to monitor and/or set the temperature and power of the RISC-V soldering iron. When the Pinecil V2 soldering iron was launched with a Bouffalo Lab BL706 RISC-V Bluetooth microcontroller last summer, we were told there were main potential cases to make use of the Bluetooth LE features: OTA firmware upgrade and remote telemetry and control. The latter is now being taken care of by Joric who has written a web application to visualize telemetry data and even control the temperature of the soldering iron. To be able to use the Bluetooth features, you’ll first need to install the latest Pinecil V2 firmware with blisp flashing utility before going to https://joric.github.io/pinecil to pair your soldering iron as explained in the wiki. Note the implementation relies on the Web Bluetooth API which [...] The post Pinecil V2 Bluetooth LE soldering iron gets a web interface appeared first on CNX Software - Embedded Systems News. View the full article
  5. TopTon TP-X4F is a mini PC and network appliance equipped with four 2.5GbE ports and powered by a choice of processors from the AMD Ryzen 5000U series up to the Ryzen 7 5825U octa-core-16-thread processor. The system supports up to 64GB RAM and up to five high-speed internal SATA or NVMe storage devices through M.2 sockets and SATA connectors and comes with three 4K display interfaces: HDMI, DisplayPort, and USB-C, as well as four USB ports. TopTon TP-X4F specifications: SoC (one or the other) Ryzen 5 5600U hexa-core/12-thread processor @ 2.3 GHz / 4.2 GHz with Radeon Vega 7 graphics @ 1.8 GHz; TDP: 10-25W (default: 15W) Ryzen 7 5800U octa-core/16-thread processor @ 1.9 GHz / 4.4 GHz with Radeon Vega 8 graphics @ 2.0 GHz; TDP: 10-25W (default: 15W) Ryzen 7 5825U octa-core/16-thread processor @ 2.0 GHz / 4.5 GHz with Radeon Vega 8 graphics @ 2.0 GHz; TDP: [...] The post TopTon TP-X4F mini PC with four 2.5GbE ports features up to AMD Ryzen 7 5825U processor appeared first on CNX Software - Embedded Systems News. View the full article
  6. There is no way to support this on s905 TV Boxes while reusing the android u-boot as the android uboot on s905 conflicts with the partition table location of standard mainline linux (this only impacts s905 boxes; s905x[wl], x2, x3, etc will work). So this removes the old script that claimed to support this. The Amlogic TV Box install instructions on the forum have been updated to reflect this change. Changes to be committed: modified: config/sources/families/meson-gxl.conf deleted: packages/bsp/aml-s9xx-box/root/install-aml-s905-emmc.sh 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] Tested that builds install on TV boxes View the full article
  7. Description Divide kernel config ownership more precise. Jira reference number AR-1435 View the full article
  8. Description I want to rebuild Bpi M5 with current kernel (now they are EDGE only). Jira reference number [AR-9999] How Has This Been Tested? [x] Boot Odroid N2+ 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. OpenPLC is an open-source, free-to-use Programmable Logic Controller Suite, compliant with the IEC 61131-3 standard, and working with a range of hardware platforms such as Arduino, ESP8266/ESP32, Raspberry Pi SBCs, as well as Windows and Linux machines. When Arduino unveiled the Arduino PLC IDE, we noted the languages defined by the IEC 61131-3 standard were licensed, and the PLC key for the Portenta Machine Control unit sold for $17.60. One reader complained about the high license cost per device, but Massimo Banzi, the co-founder of the Arduino project, replied it was cost-effective for smaller deployments: Actually it’s not that much money compared to the cost of other PLC software (thousands of dollars per seat!). This model helps small companies with not that many devices.. It’s possible to negotiate bulk licenses for companies. But there’s also another option with OpenPLC open-source PLC suite that does not require any license fee. That’s [...] The post OpenPLC open-source Programmable Logic Controller Suite works with Arduino, ESP8266/ESP32, Raspberry Pi, etc. appeared first on CNX Software - Embedded Systems News. View the full article
  10. Description This patch doesn't make any changes to the source file: -rockchip->ep_gpio = devm_gpiod_get_optional(dev, "ep", - GPIOD_OUT_HIGH); +rockchip->ep_gpio = devm_gpiod_get_optional(dev, "ep", GPIOD_OUT_HIGH); If this patch once had a function it has been lost in the Git history thanks to the patch archive folder shuffling. How Has This Been Tested? inert patch. 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
  11. Description There are a large number of "roc-pc" boards as Firefly has adopted/misapplied the Libre Computer naming convention. Be as specific as possible. ALSO NOTE A DTS EXISTS IN MAINLINE. This patch is overwriting the mainline DTS entirely, and should be replaced with patches changing the mainline dts instead to avoid further deviation from the base. How Has This Been Tested? Simple file rename, no content change. 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
  12. everything is on top of existing rockchip-rk3588 family thus the same crazy half-android rk kernel tree and ancient rk u-boot orangepi5.wip: initial OrangePi5 support; u-boot and boardfile by @efectn; adapted to work with existing family OPi5's u-boot patches: by @efectn; extracted from Xunlong's single-commit tree adapted to work with existing family included the boot.scr fix patch from rock-5b orangepi5.wip: initial OrangePi5 support; kernel patches, extracted from Xunlong tree OPi5's kernel patches, all extracted from Xunlong's tree against Radxa's Only enable the DT patch for now Other stuff that looks might be useful is grouped in a few other disabled patches panel/overlays/etc from Xunlong tree not included Original closed PR #4569 by @efectn This needs review by @amazingfate -- it shouldn't break anything; maybe one of the .disabled patches included is actually useful? View the full article
  13. ELECFREAKS’ TOOCA Laser L1 is an affordable 5W laser engraver with a sturdy yet lightweight structure and that can engrave various materials including metals. It’s easy to use with a one-button press and suitable for education in schools. TOOCA Laser L1 laser engraver unboxing The laser engraver comes as a kit with components that can be easily assembled. It was well-packed with little risk of being damaged during transport. It also includes tools and instructions for assembly, and you don’t need any extra tools to complete the assembly. TOOCA Laser L1 specifications The machine measures 568x632x198 mm, weighs 3.2 kg only so it can easily be carried around, and offers a 400×415 mm working area. It works with Windows and macOS and only requires 24V power available through the provided power adapter. A wide range of file types are supported, and the device can engrave many types of materials and [...] The post TOOCA Laser L1 review – An affordable 5W laser engraver appeared first on CNX Software - Embedded Systems News. View the full article
  14. Description Switch sunxi to EDGE to 6.1, CURRENT to 5.15.83 How Has This Been Tested? [x] Test build sunxi [x] Test build sunxi64 View the full article
  15. Description View the full article
  16. The LapPi 2.0 is a DIY laptop kit with an acrylic enclosure, a UPS HAT with a 18650 battery holder, and off-the-shelf parts including speakers, a touchscreen display, a Raspberry Pi camera, and a wireless keyboard that’s suitable for the Raspberry Pi 4 and pretty much any other small single board computer from Radxa, Orange Pi, Banana Pi, FriendlyElec, Hardkernel, and others. We’ve seen several Raspberry Pi laptops over the years with the CrowPi L and Pi-Top, and I have to say the LapPi 2.0 is not the most eye-pleasing or sophisticated design, but at least, it’s versatile and not limited to the Raspberry Pi family. LapPi 2.0 kit content and highlights: Display – 7-inch 5-point capacitive touchscreen IPS display with 1024×600 resolution support for audio output via 3.5mm audio jack and 4-pin header Camera – Official 8MP Raspberry Pi Noir camera with night vision support Audio – 2x 5W/8 [...] The post LapPi 2.0 – A DIY laptop for Raspberry Pi 4 and other single board computers (Crowdfunding) appeared first on CNX Software - Embedded Systems News. View the full article
  17. Description If there is a new SSD or harddisk used as destination with just a partition created but not yet formatted with a filesystem, then armbian-install does not provide this partition as a selectable destination. GH reference #4576 Changes made function check_partitions(): remove file system filter on lsblk commands for listing probable target partitions fix typo "Destnation" -> "Destination" fix indentation on if scopes Test results New SSD - just a single partition was created but not yet formatted: Script armbian-install was run on a Cubietruck board: Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [n/a] I have commented my code, particularly in hard-to-understand areas [n/a] I have made corresponding changes to the documentation [x] My changes generate no new warnings [n/a] Any dependent changes have been merged and published in downstream modules View the full article
  18. rockchip-6.1: fix xt-q8l-v10-remote-keymap.patch mbox formatting; rebase against 6.1.0 this patch had "half-mbox" formatting first a bare patch (no mbox headers, From/Subject etc) then an mbox-formatted patch this causes the 1st/bare patch to be lost when parsing/applying this file with a proper mbox-enabled tool This is meant for @paolosabatino 's appreciation since it's his patch. View the full article
  19. Quantum computing promise a leap in the performance of applications relying upon parallelism using the properties of quantum physics like superposition, interference, and entanglement to perform computation instead of flipping “0” and “1” like traditional transistors. It will be used in scientific simulations, cryptography, machine learning, computational biology, and more. So far, I had seen massive quantum computers in research labs, but companies like Intel and IBM are working on providing quantum processors with hundreds and thousands of qubits that should eventually be found in supercomputers. It’s unclear to me whether we’ll ever see “quantum accelerators” in embedded processors, and in any case, it would be many years away. But if you are interested in better understanding the technology and playing around with quantum computing, SpinQ has been selling 2 or 3-qubit quantum computers for the education market: Gemini Mini, Gemini, and Triangulum. Gemini Mini quantum computer Specifications: Number of [...] The post SpinQ quantum computers target the education market appeared first on CNX Software - Embedded Systems News. View the full article
  20. The PineTab2 is an upcoming 10.1-inch Linux tablet based on the 1.8 GHz Rockchip RK3566 quad-core Cortex-A55 processor and equipped with up to 8GB RAM and 128GB eMMC flash. The new model is a clear step-up compared to the Allwinner A64-based PineTab which did not survive the supply shortage and has also gone through a complete physical redesign with a modular metal chassis that is easy to disassemble for upgrades and change parts such as the eMMC module, camera module, battery, or even the display. PineTab2 preliminary specifications: SoC – SoC – Rockchip RK3566 quad-core Arm Cortex-A55 @ up to 1.8 GHz with ARM Mali-G52 2EE GPU supporting OpenGL ES 1.1/2.0/3.2. OpenCL 2.0. Vulkan 1.1, 0.8 TOPS NPU System & Storage Option 1 – 4GB RAM, 64GB eMMC flash module Option 2 – 8GB RAM, 128GB eMMC flash module MicroSD card slot Display – 10.1-inch IPS display (other details TBC) [...] The post PineTab2 Linux tablet to feature Rockchip RK3566 SoC, up to 8GB RAM, 128GB eMMC flash appeared first on CNX Software - Embedded Systems News. View the full article
  21. Description https://github.com/badges/shields/issues/8671 Jira reference number AR-1437 View the full article
  22. TwoTrees TS2 is a laser engraver with a 10W laser, and the company sent us a sample for review. I usually let Karl review this type of hardware as he’s done previously with the Ortur Laser Master 2 Pro laser engraver, but he happens to be busy with another 10W laser engraver from a different company, so I decided to try it out myself this time around. I’ll write a two-part review, with the first part checking out the specifications, unboxing the package, and reporting my experience assembling my very first laser engraver, before engraving and cutting various materials in the second part of the review. TwooTrees TS2 laser engraver specifications Basic TS2 specifications provided in the user manual: Laser Power – 10 Watts Wavelength – 445 nm +/-5 Control board – Makerbase DLC32 V.20 with ESP32-WROOM-32U module Engraving accuracy – 0.1mm Engraving speed – 10,000mm per minute Engraving size [...] The post TwoTrees TS2 laser engraver review – Part 1: Unboxing and teardown appeared first on CNX Software - Embedded Systems News. View the full article
  23. Machine learning is increasingly seeing more applications and it's important to have FOSS options to accelerate such workloads. With that in mind, we began an effort earlier this year to get a TFLite model running on a VIM3 NPU using Etnaviv and OpenCL. View the full article
  24. Olimex has started to take pre-orders for the AgonLight2, a customized version of the Agon Light 8-bit open-source hardware computer based on the Z80 family and running BBC Basic. Bernardo Kastrup and Dean Belfield created the Agon light 8-bit retro computer with VGA and PS2 keyboard port and programmable with BASIC earlier this year and released all hardware design files, the firmware, and documentation on GitHub, and Dean uploaded a one-hour-long video on YouTube. It was designed with EasyEDA, but Olimex re-captured the design in KiCad after getting customer requests, and the new cost-optimized board named AgonLight2 will start shipping by the end of January 2023. AgonLight2 specifications: MCU – Zilog eZ80F92 8-bit microcontroller @ 18.423 MHz with 128 KB flash, 256 bytes configuration Flash memory, 8 KB SRAM (See PDF datasheet for details) System Memory – 512KB, 10ns, parallel SRAM Storage – MicroSD card socket Terminal subsystem MCU – [...] The post Olimex AgonLight2 8-bit open-source hardware computer sells for 50 Euros appeared first on CNX Software - Embedded Systems News. View the full article
  25. Description Switch sunxi to LK 6.1 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 test 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