New Buildroot Release fsimx6ul-V2.1

  • i.MX6UL Linux Release V2.1 (Buildroot)


    We have uploaded a new Linux version for all boards and modules based on the i.MX6UltraLite CPU to our server, i.e. the fsimx6ul architecture: efusA7UL, PicoCOM1.2. This release is running on all platforms of this architecture at the same time. So you can download the same binaries for NBoot, U-Boot, Linux kernel and Buildroot root filesystem to any of the i.MX6UL boards and it will run.


    This is a maintenance release based on Buildroot. The release consists of two files:


    fsimx6ul-V2.1.tar.bz2
    This is the main release itself containing all sources, the binary images, the documentation, examples and the toolchain.


    sdcard-fsimx6ul-V2.1.tar.bz2
    If you copy the contents of this archive to an SD card or USB stick, you can install our precompiled standard system in a very straightforward and comfortable way on the board. The SD card archive is meant for people who just want to try a release first without having to download the quite large main archive. Its content is also contained in the main release archive, so if you want to download the main archive anyway, you don't need to bother with the SD card archive.


    These tar archives are compressed with bzip2. So to see the files, you first have to unpack the archives

    Code
    1. tar xvf fsimx6ul-V2.1.tar.bz2


    This will create a directory fsimx6ul-V2.1 that contains all the files of the release.


    Please read the file doc/FSiMX6UL_FirstSteps_eng.pdf. It lists the meaning of all files and shows how to install and use everything.




    Release Notes for fsimx6ul-V2.1


    1. Support for new boards and i.MX6ULL


    This is the first regular release that supports PicoCOM1.2.


    It is also the first release that has support for the i.MX6ULL CPU. This CPU variant is currently used on some efusA7UL versions. U-Boot and Buildroot do not need special handling for i.MX6ULL, but Linux needs a different device tree for these variants because of some differences in the CPU itself. Device-Trees for i.MX6ULL are ending in "ull". If the name of the device tree already ended in "ul", then only an additional 'l' is appended. Otherwise "ull" is appended. So because the device tree for efusA7UL with i.MX6UL is called efusa7ul.dts, the device tree for efusA7UL with i.MX6ULL is called efusa7ull.dts. If the PicoCOM1.2 will ever get a variant with i.MX6ULL, then the device tree will be called picocom1.2ull.dts instead of picocom1.2.dts.


    The i.MX6ULL is also available with 900 MHz. So this results in a much faster efusA7UL compared to the regular i.MX6UL with 528 MHz.



    2. Secure-Boot features


    We have done quite a lot to support Secure-Boot. This means the whole boot process from NBoot via U-Boot to Linux can be restricted to binary images that are either signed or signed and encrypted. At the moment, the following images are supported: NBoot, U-Boot, Linux kernel (uImage), device tree, root filesystem (if not mounted read/write).


    However as this all requires some effort and instructions, we have not included this in the regular release. You need a special NBoot and also special versions of U-Boot. So if you are interested in Secure-Boot, please contact F&S.



    3. Enhanced device drivers


    Many device drivers are improved. For example the signal drivestrength for SD cards is now better trimmed and should provide less problems on all boards. Card Detect (CD) and Write Protect (WP) is fixed. eMMC is now supported on all eMMC-capable boards. RTS/CTS on UART had some issues that are solved now. The ethernet speed can now be restricted in the device tree. For example you can limit the speed to 10 Mbit/s.


    The USB bus power is now switched by the controller itself. This pin was configured and used as GPIO in the past, now it uses the dedicated USB controller function. We have left the old code for reference (look for "#if 0 //###"), but we will remove this in the next release if there are no further problems.


    The USB OTG port can be used as additional host now on boards where this is supported by the hardware. We have added appropriate CONFIG macros in the device tree in this case. On some boards this even works completely automatically by checking the ID pin on the USB connector.


    Add support for the new WLAN chip on board revisions on board revisions 1.2x of efusA7UL. Unfortunately the old and the new WLAN driver can not be active at the same time, so the old WLAN driver needed to be disabled in this release. If you still have an older board revision, please replace the board because only these new revisions will be available in larger quantities for the series.



    4. Display & Touch


    All default display configurations use 32 bits per pixel now. This is necessary for some OpenGL and Qt5 examples. Backlight handling is improved. We have added a virtual keyboard to the Matchbox window manager in our standard configuration, including a German keyboard layout. xrandr is now also included in the default configuration, this can be used to rotate the X11 screen. We have added support for more CAP-Touch drivers.


    By the way, if you use our EDT070080 display, do not be surprised if the screen is now upside down. This was in fact an error in the past and the display was already upside down. So now is the correct orientation. This was caused by a wrong default setting for the rotate pin on the RGB-Adapter (armStoneA9 and efus-SKIT only).



    5. Fix freezing problem


    There was a problem that the board might freeze when only a few interfaces were active. This was caused by a power saving mode where the bus frequency for RAM is reduced to 24 MHz. Unfortunately not all DDR3 RAMs support this so-called DLL-off mode, which caused problems on these boards. Bus frequency scaling could be disabled via the sysfs at run-time already, but the system always started with bus frequency scaling enabled. We have added a switch to the device tree that allows starting with bus frequency scaling turned off. This is our default setting now.



    6. Audio chip default settings


    We have added /var/lib/alsa/asound.state, where the default settings for the sound codecs are given. You can modify this file for your own preferred sound settings.



    7. U-Boot


    SD support is also improved in U-Boot. eMMC is now detected and can be read and written with mmc read and mmc write.


    USB OTG devices (usb 0) can also be used as host in U-Boot where appropriate. Simply set the environment variable usb0mode to one of the following modes:


    peripheral: Use port fix as device (default)
    host: Use port fix as host
    otg: Check ID pin and depending on this use as host or device


    USB devices that are active in U-Boot are shut down now before starting the kernel to save power. Environment variable earlyusbinit is removed. The current USB code detects all USB storage devices realiably and we do not need this kludge anymore.


    All ethernet PHYs are set to standby before starting the kernel. This considerably saves power in case that networking is not automatically active in Linux.


    U-Boot patches some entries in the device tree automatically according to the board configuration that it finds at run-time. For example the ecc-strength for the NAND flash and some settings for /sys/bdinfo. More of these settings will be added in the future, for example WLAN detection, eMMC detection, etc.


    The U-Boot console output can now be redirected via network to a remote host. By default the host given as serverip is used, but you can also give a separate host by setting environment variable ncip. The following commands will redirect input and output to the remote host:


    Code
    1. setenv stdin nc; setenv stdout nc


    On the host side you have to start a tool called netconsole which is available in the tools directory when you build U-Boot.


    Code
    1. tools/netconsole <ip-addr_of_board>


    To redirect input and output back to the board, issue these commands:


    Code
    1. setenv stdin serial; setenv stdout serial


    For further information about this feature see doc/README.NetConsole in the U-Boot sources.



    8. Cortex-M4 support


    There were also lots of changes for asymmetric multicore processing (AMP) with the Cortex-M4. But as this is only relevant on i.MX6-SoloX, we will skip it here.



    -----------------------------------------------------------------------------------


    The following list shows the most noticable changes in this release in more detail since our last i.MX6UL release. Please note that the source code is also used for other platforms. This is why you will also find references to other CPU types and F&S boards here in the changelog.


    nbootimx6_35.bin (VN35) (09.11.2017)
    Supported Boards: efusA9UL, PicoCOM1.2


    NBoot for i.MX6UL shares the source code with other i.MX6 CPU variants like SoloX and regular i.MX6, therefore versions are counted consecutively.


    [VN31]

    • 0003118: Change chainloader to #define option
    • 0003114: Disable ODT for armStoneA9, armStoneA9r2, PicoMODA9
    • 0003119: Add workaround for ring oscillator variations in UL
    • 0003117: Change watchdog initialisation
    • 0003115: Add M4 support for SX


    [VN32]

    • 0003214: Fix boardfeature settings for efusA9X
    • 0003213: Add MAC readout over USB
    • 0003211: Add secureboot
    • 0003122: Boardfeatures not detected properly after warmboot
    • 0003123: Reboot with 'r' does not work on UL
    • 0003131: NetDCUA9: Serial debug on wrong port


    [VN33]

    • 0003276: Rewrite checkboot code to remove numerical constants
    • 0003275: Add support for second chip select on DDR3
    • 0003274: Move GetLoaderName function from menu.c to imx6_loader.c
    • 0003273: Set HAB API vector table address according to processor type and revision
    • 0003272: Add user defined boardfeatures in nbootargs
    • 0003271: Add detection for security enabled nboot
    • 0003270: Add support for i.MX6ULL
    • 0003269: Add code for setting arbitrary fuses
    • 0003268: Rewrite code for fuse setting
    • 0003266: Makefile for nbootimx6sx_secure uses wrong cpu type
    • 0003155: Can't set serial number after blowing boot fuses


    [VN34]

    • 0003309: Change EncodeBCH function call
    • 0003308: Fix processor detection for QP/DP
    • 0003307: Add delay before reconfiguring DRAM controller


    [VN35]

    • 0003325: Remove unnecessary functions and menu entries in secure variants
    • 0003324: Add variant with changed start address for UL boot issue
    • 0003326: Add new functions for JTAG security fuses
    • 0003323: Add new variants secure and secureprod with security features enabled


    u-boot-2014.07-fsimx6ul-V2.1 (22.02.2018)
    Supported boards: armStoneA9, armStoneA9r2, efusA9, PicoMODA9, NetDCUA9, QBlissA9, QBlissA9r2, efusA7UL, PicoCOM1.2, efusA9X, PicoCOMA9X
    Not tested: armStoneA5, NetDCUA5, PicoCOMA5, armStoneA8, PicoMOD7A, NetDCU14


    • Reduce drive strength for ethernet clock signal on fsvybrid
    • Add PicoCOMA9X support for SD card and ethernet
    • Add basic support for PicoCOM1.2 and LEDs on fsimx6ul
    • Add interrupt support for i.MX6
    • Add blinking LED support for fsimx6 and fsimx6ul
    • Add support for NetDCUA9
    • Remove ATAG creation from fsimx6/fsimx6sx/fsimx6ul platforms
    • Handle board features similarly on fsimx6/fsimx6sx/fsimx6ul
    • Improve LAN/WLAN initialization on fsimx6/fsimx6sx/fsimx6ul
    • Add dynamic device tree boot modifications for F&S boards
    • Add proper support for PicoCOM1.2
    • Add support for second Ethernet port on NetDCUA9
    • Improve timer resolution on i.MX6 CPUs
    • New implementation for AX88796 ethernet controller
    • Fix timer implementation on i.MX6
    • Set pull-down on display signals on fsimx6/fsimx6sx/fsimx6ul
    • Fix BoardType calculation
    • Improve USB power on fsimx6ul
    • [fsimx6/ul/sx] Do not update existing properties in the device tree
    • [fsimx6/sx/ul] Add reset_cause, nboot_version, u-boot_version to bdinfo
    • Fix typos in env_nand.c
    • [fsimx6/sx/ul] Add support for 2 GB RAM
    • [fsimx6/sx/ul] Enhance SDHC initialization, add eMMC support
    • Add recovergpio to all F&S boards
    • Add device tree support for fsvybrid
    • [fsimx6/ul/sx] U-Boot may overwrite device tree settings
    • Add possibility to add function board_preboot_os()
    • [fsimx6/ul/sx] Shut down PHYs before starting Linux
    • Allow DEL key to work in the command line
    • Fix handling of second ethernet port on PicoCOMA9X
    • [fsimx6sx] Enhance ethernet initialization
    • fec_mxc: Add support for MAC-MAC connections without PHY
    • [fsimx6sx] Add support for Cortex-M4 core
    • [fsimx6sx] Leave memory space for RPMsg
    • [fsimx6sx] Add port speed setting for SJA1105
    • Improve hush parser command line handling
    • [fsimx6sx] Set CONFIG_NR_DRAM_BANKS to 2, improve dram_init_banksize()
    • [fsimx6/sx/ul] Add issue_reset(), handle RESETOUTn better
    • Improve bootaux command
    • Improve ehci-hcd USB driver
    • Fix setting of platform and sercon variables in board_late_init()
    • ehci-hcd: Shut down USB port power before booting OS
    • [fsimx6/sx/ul] Improve USB configuration
    • Add QBlissA9r2 board_info entry to fsimx6.c
    • [fsimx6/sx/ul] Rework USB support, add host support on OTG port
    • On efusA7UL use same strategy for CD/WP on SD ports as in Linux
    • Add support for CONFIG_NETCONSOLE to fsimx6/sx/ul/fsvybrid
    • Patch shared memory addresses for RPMsg in device tree on fsimx6sx
    • Some small final improvements to fsimx6/sx/ul/fsvybrid
    • Add function to reserve a RAM region in fdt on fsimx6sx
    • Fix drivestrength issues for SD ports on fsimx6/sx/ul
    • Use state machine for auxiliary core support (bootaux command)
    • Add support for PCIe on fsimx6sx
    • Set WLAN MAC address in bdinfo for fsimx6sx/fsimx6ul
    • Improve auxiliary core support
    • Add option to switch off EEE (Energy Efficient Ethernet) for Atheros PHY
    • Backport i.MX6ULL support from u-boot-2016.03 rel_imx_4.1.15_2.0.0_ga
    • Add support for efusa7UL board rev. 1.22 with i.MX6ULL
    • Add CONFIG_IMX_THERMAL to fsimx6/ul/sx to show speed grading and temp range
    • Fix i.MX6ULL pad settings that differ from i.MX6UL
    • Enhance speed grade detection and temperature output on i.MX6UL/ULL
    • Combine mx6ul_pins.h and mx6ull_pins.h to mx6ulull_pins.h
    • On fsimx6ul, add platform names for variants with i.MX6ULL, e.g. efusa7ull
    • Deactivate VLCD_ON and VCFL_ON in U-Boot on fsimx6/sx/ul
    • Initialize DVS signal on fsimx6ul
    • Revert change to IC_INTERFACES_BASE_ADDR in imx-regs.h
    • On fsimx6ul, add option to limit the CPU to 528 MHz


    linux-4.1.5-fsimx6ul-V2.1 (21.02.2018)
    Supported Boards: armStoneA9, armStoneA9r2, efusA9, PicoMODA9, NetDCUA9, QBlissA9, QBlissA9r2, efusA7UL, PicoCOM1.2, efusA9X, PicoCOMA9X

    • Add Sitronix ST1633I pcap touch
    • Basic initial device tree for QBlissa9q
    • Improve temperature sensor bme280 driver
    • Improve Focaltech touch ft5x06
    • Improve armStoneA9r2 DT audio SGTL5000 clock
    • Improve armStoneA9r2 DT and driver for MIPI camera
    • Rename History-F+S-Kernel-txt to History-F+S-Kernel.txt
    • Switch F&S default display configurations to 32 bpp
    • Implement polarity inversion for pwm-imx
    • Add support for PicoCOMA9X with PCOMnet
    • Change DMA, activate defines in picocoma9x.dts
    • Add Gamma2 option to leds-pwm.c driver
    • Add wm9715 support, needed for NetDCUA9
    • Improve wm9715 support
    • Add device tree for NetDCUA9 and improve defconfig for fsimx6 S/DL/Q
    • Improve Asix AX88796 driver and phy_device driver
    • Improve NetDCUA9 device tree, support AX88796B
    • Add fsl,mclk-out to SAI for outgoing MCLK on i.MX6UL
    • Add support for PicoCOM1.2
    • Fix ethernet clock settings on i.MX6UL and i.MX6SX
    • Do not rotate display by default on aST-ADP-EDT1
    • Add ET035080 to LCD database, fix ET070080 timings
    • Improve netdcua9 fec settings
    • Support for PicoCOMA9X on standard SKIT
    • On efusA9X fix RTS/CTS on UART3
    • Do not define RTC_IRQ pad twice on PicoCOM1.2
    • Improve LCD Power Management for i.MX6SX/UL
    • Improve ILINK PCAP touch support
    • Add support for ILI21XX and ST1633I touch on F&S platforms
    • Set default ecc_strength to 8 on PicoMODA9
    • Improve SGTL5000 on imx.6: no-standby, ext. vddd, small pop
    • Improve display settings PicoCOMA9X
    • Improve device tree IOMUX settings for GPIOs
    • Add picocoma9x to dts Makefile
    • Improve eMMC handling on i.MX6
    • Support HDP signal with inverted polarity in HDMI driver
    • Add support for QBlissA9
    • Add support for QBlissA9r2
    • Add ET8076 HID Multi-touch support
    • Add support for Freescale DCU DRM Driver
    • Improve vf610 support
    • Add support for armStoneA5
    • Improve DCU DRM driver
    • Improve imx6sx.dtsi PWM settings
    • Improve spi-imx driver to support more than 4 chip selects
    • Allow keeping GPIO interrupt settings from U-Boot
    • Fix clock sources for cko2_sels in clk-imx6ul.c
    • Allow clock activation via devcie tree at startup in clk-imx6ul.c
    • Improve PicoMODA9 device tree settings
    • Improve NetDCUA9 pinmux settings
    • Improve armStoneA9r2 pinmux settings
    • Improve armStoneA9 pinmux settings
    • Add polarity settings for USB_OTG/H1_PWR/OC on i.MX6
    • Improve device tree settings for USB on fsimx6/sx/ul
    • Fix display settings for PicoCOMA9X
    • Add auxiliary core linux driver support
    • Improve RPMsg driver dynamic vring buffer start addresses
    • Improve auxiliary core driver
    • Avoid warning in bdinfo driver if DEBUG_LOCK_ALLOC is active
    • Add mono2both flag to device trees
    • Add mdio nodes to FEC device tree nodes on fsimx6, allows setting the speed
    • Add RPMsg example fs_adc_i2c_rpmsg_demo to show communication A9 <-> M4
    • Add SUPPORT_M4 to efusa9x.dts
    • Fix freeRTOS periodicWFI example
    • mxs-dma-ext.c: Add iram option, remove runtime suspend
    • Add iram setting to dma_apbh on fsimx6/sx/ul
    • Enhance DDR3 busfreq driver for i.MX6/SX/UL
    • Pretty-print F&S device trees, update copyright date
    • Restructure PicoMODA9 device trees
    • Improve device tree for PicoCOMA9X
    • Improve device trees for several F&S boards
    • Fix RTS/CTS settings for UART on fsimx6/sx/ul
    • Disable bus frequency scaling on fsimx6/sx/ul
    • Move SDMA descriptors to OCRAM on i.MX6 and i.MX6SX
    • SGTL5000 warmstart problems: restore code with internal LDO
    • Add ax88796 driver to fsimx6_defconfig for 2nd LAN on NetDCUA9
    • Restructure device tree for efusA9X
    • virtio_rpmsg_bus.c: Remove debug messages, they slowed down everything
    • Improve example fs_rpmsg.c
    • Fix SD port settings and M4 configs in efusA9X device tree
    • Add SUPPORT_M4 to PicoCOMA9X devicetree + small i2c3 fix
    • Rework PicoCOM1.2 device tree
    • Fix SD/eMMC/WLAN/BT device tree settings for F&S boards
    • sdhci-esdhc-imx.c: Do not switch pad settings unnecessarily often
    • sdhci.c: Remove console message if voltage switching fails
    • wm97xx-core.c: Remove warning about unspecified IRQ
    • Minor fixes in device trees for efusA7UL and NetDCUA9
    • Change lcdif aliases for imx6sx.dtsi
    • Improve imx6sx can clock settings
    • Improve Display regulator settings in device trees
    • QBlissA9/QBlissA9r2: Rename UART/I2C/PWM ports, enhance device trees
    • Finish UART RTS/CTS modification
    • Disable internal SNVS-RTC on i.MX6/i.MX6UL
    • Fix device tree issues found during test
    • Improve PicoCOMA9X device tree pinmux settings
    • Make bootaux command similar to U-Boot: start/stop/pause/continue/run
    • Improve efusA9X, PicoCOMA9X device tree and fsimx6sx_defconfig
    • Fix support for 8250-16550 UART to use 4 ports
    • Add phy led trigger
    • Change fsimx6sx/ul_defconfig to support Silex WLAN
    • Add option to anable/disable GPU on PicoCOMA9X
    • Add support for PCIe on efusA9X
    • Add CONFIG_FIXED_PHY to fsimx6sx_defconfig
    • Add missing status = "okay"; for SPI_A on efusA9X
    • Add checks to efusa9x.dts to avoid errors when not using audio
    • Add LED trigger to show link up/down status for ethernet PHY
    • Update to rel_imx_4.1.15_1.2.0_ga (Add support for i.MX7D)
    • Update to rel_imx_4.1.15_2.0.0_ga (Initial support for i.MX6ULL)
    • Update to rel_imx_4.1.15_2.0.1_patch
    • Update to rel_imx_4.1.15_2.0.2_patch (Support for i.MX6ULL 800 MHz)
    • Update to rel_imx_4.1.15_2.0.3_patch (Support for i.MX6ULL 900 MHz)
    • Revert bad display settings on efusA7UL
    • Backport differing pad settings for i.MX6ULL from rel_imx_4.9.x_1.0.0_ga
    • Improve i.MX6ULL settings
    • Add efusa7ull.dts and support for efusA7UL board rev 1.22
    • Re-enable operating points for 792 and 900 MHz on i.MX6ULL
    • Add i.MX6ULL to fsimx6ul_defconfig


    buildroot-2016.05-fsimx6ul-V2.1 (21.02.2018)
    Supported Boards: armStoneA9, armStoneA9r2, efusA9, PicoMODA9, NetDCUA9, QBlissA9, QBlissA9r2, efusA7UL, PicoCOM1.2, efusA9X, PicoCOMA9X
    Not tested: armStoneA5, NetDCUA5, PicoCOMA5

    • Add fsimx6sx_qt5_defconfig
    • In Cairo, only include xlib_libXdamage in case of XORG7
    • Improve F&S defconfigs based on NXP SoCs (add ltrace, strace, remove file)
    • On fsvybrid, switch from mdev to eudev to allow using evdev in X11
    • On fsvybrid, use evdev for touches now (better multitouch support)
    • On fsvybrid, remove input-event-daemon like on all other F&S configs
    • Add basic support for wayland and weston on i.MX6
    • Fix weston gal2d-renderer
    • Add EGL/GLESV2 support to weston on i.MX6
    • Use eudev-1.10 for fsvybrid
    • Remove unused board/f+s/fsimx6/inittab file
    • Add netdcua9dl/q devicetrees to fsimx6_min/std_defconfig
    • Add Audio Chip configuration support
    • Add keyboard icon to taskbar
    • Add german keyboard layout
    • Add fsgetty for all F&S boards and modules
    • Improve fsvybrid defconfig DT/Kernel
    • Add wget support for fsimx6, fsimx6sx, fsimx6ul
    • Include QBlissA9qdl and QBlissA9r2qdl names in fsimx6_std_defconfig
    • Add fsimx6ul_qt5_defconfig
    • Add support for wget in fsvybrid
    • Fix sdkdir problems in xdriver-xf86-input-{evdev,mouse}
    • Go to busybox config 1.24.2, add FAT tools to F&S defconfigs
    • Add additional packages to qt5_defconfigs required for Qt5 debugging
    • S35x11: Do not start X if no framebuffer is available
    • Add new busybox config for additional F&S platforms
    • Remove unused qblissa9qt_defconfig
    • Add missing device trees to some F&S defconfigs
    • Add openssl binaries to some F&S configs, remove unneeded applications
    • Add xrandr to fsimx6/sx/ul_std_defconfig
    • Do not use a session for matchbox
    • Add package silex-wlan-fs for F&S boards
    • Activate silex-wlan-fs package on fsimx6sx and fsimx6ul
    • Add Wayland/Weston support to cairo and imx-gpu-viv
    • Add efusa7ull device tree to all fsimx6ul defconfigs


    Examples

    • No changes


    Toolchain

    • No changes


    Documentation

    • Update to version 1.1 of AdvicesForLinuxOnPC_eng.pdf
    • Update to version 1.3 of FSiMX6UL_FirstSteps_eng.pdf
    • Update to version 1.4 of efusA7UL-GPIO-ReferenceCard_eng.pdf
    • Add verion 1.0 of PicoCOM1.2-GPIO-ReferenceCard_eng.pdf
    • Update to version 1.10 of efusA7UL_Hardware_eng.pdf
    • Add "Letter of Conformity efusA7UL.pdf" (WLAN/Bluetooth conformity)
    • Update to version 1.18 of efus_SINTF_eng.pdf
    • Update to version 1.0 of efus_DG_eng.pdf
    • Add version 0.10 of PicoCOM1_Startinterface_eng.pdf
    • Update efus_SINTF_Rev121_BOM.pdf
    • Update efus_SINTF_Rev121_schematic.pdf
    • Replace efus_SINTF_Rev121_Bottom.pdf and efus_SINTF_Rev121_Top.pdf with
    • efus_SINTF_Rev121_placement.pdf
    • Update efus_SINTF_Rev121_eagle.zip
    • Add PicoCOM1-Startinterface_V1.10_Schem+BOM.pdf


    Your F&S Support Team



    Remark: Information to the previous version can be found here.

    F&S Elektronik Systeme GmbH
    As this is an international forum, please try to post in English.
    Da dies ein internationales Forum ist, bitten wir darum, Beiträge möglichst in Englisch zu verfassen.

    Edited once, last by fs-support_HK ().