This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import glob | |
import os | |
import lxml.etree as ET | |
struct_item = '''\ | |
{{ | |
.vendor = "Microchip", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ATmega16M1 | |
SUBARCH=107 ; should be AVR8 -- 107 is highest supported | |
ROM=16384 | |
RAM=1280 | |
EEPROM=512 | |
area DATA REGISTERS_ 0x0000:0x0020 REGISTERS_ | |
area DATA MAPPED_IO_ 0x0020:0x0100 MAPPED_IO_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mm@P15:/opt/microchip/mplabx/v6.15/mplab_platform/mplab_ipe$ ./ipecmd.sh /? | |
------------------------------------------------------------------------------------------------------ | |
IPECMD COMMAND LINE HELP | |
------------------------------------------------------------------------------------------------------ | |
Usage: ipecmd <deviceName> <toolName> [Options] - Note: Device and Tool are mandatory commands | |
Note: More examples available in [Readme for IPECMD.html] under installation docs folder | |
------------------------------------------------------------------------------------------------------ | |
Options Description Default | |
------------------------------------------------------------------------------------------------------ | |
# Communication Ports 1 thru 255 supported. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mm@P15:~$ diff /tmp/env_ff /tmp/env_tb | |
9a10 | |
> force_s3tc_enable=true | |
13a15,16 | |
> NO_AT_BRIDGE=1 | |
> XUL_APP_FILE= | |
14a18,19 | |
> XRE_BINARY_PATH= | |
> MOZ_CRASHREPORTER_STRINGS_OVERRIDE=/usr/lib/thunderbird/crashreporter-override.ini | |
16a22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
m@DESKTOP-4AITTRD /z/Projektek/flashrom_git | |
$ meson compile -C build | |
INFO: autodetecting backend as ninja | |
INFO: calculating backend command to run: "c:\Program Files\Meson\ninja.EXE" -C //VBoxSvr/mm/Projektek/flashrom_git/build | |
ninja: Entering directory `//VBoxSvr/mm/Projektek/flashrom_git/build' | |
[8/116] Compiling C object libflashrom-1.dll.p/helpers_fileio.c.obj | |
FAILED: libflashrom-1.dll.p/helpers_fileio.c.obj | |
"gcc" "-Ilibflashrom-1.dll.p" "-I." "-I.." "-I..\include" "-IC:\Program Files (x86)\National Instruments\Ni-845x\MS Visual C" "-fdiagnostics-color=always" "-D_FILE_OFFSET_BITS=64" "-Wall" "-Winvalid-pch" "-Wextra" "-Werror" "-std=c99" "-Os" "-Wshadow" "-Wmissing-prototypes" "-Wwrite-strings" "-Wno-unused-parameter" "-Wno-missing-braces" "-D_DEFAULT_SOURCE" "-D_POSIX_C_SOURCE=200809L" "-D_BSD_SOURCE" "-D__BSD_VISIBLE" "-D__XSI_VISIBLE" "-D_NETBSD_SOURCE" "-D_DARWIN_C_SOURCE" "-DFLASHROM_VERSION=\"1.4.0-devel (git:v1.2-1291-gfa8720d2)\"" "-DHAVE_STRNLEN=1" "-DIS_WINDOWS=1" "-D__FLASHROM_LITTLE_ENDIAN__=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Device does not boot on VGA black screen present. | |
UART pinout: | |
1: +3V3 (Square pin) | |
2: RX | |
3: Tx | |
4: GND | |
115200 8n1 | |
PCB label: TD2808NS-A(V1.3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BOOTING xxxxx | |
CodVnxxx.bin | |
RdMapxxx.bin | |
CovInxxx.bin | |
CvMapxxx.bin | |
HMI__xxx.bin | |
DSMu1xxx.bin | |
DSMu2xxx.bin | |
LTH__xxx.bin | |
GrAstxxx.bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$HEADER | |
GENCAD 1.4 | |
USER "" | |
DRAWING board-outline.cad | |
REVISION "" | |
UNITS USER 1000 | |
ORIGIN 0 0 | |
INTERTRACK 0 | |
$ENDHEADER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$HEADER | |
GENCAD 1.4 | |
USER "" | |
DRAWING board-outline.cad | |
REVISION "" | |
UNITS USER 1000 | |
ORIGIN 0 0 | |
INTERTRACK 0 | |
$ENDHEADER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
usbkbd=`xinput -list | grep -c "USBKey Chip USBKey Module"` | |
if [[ "$usbkbd" -gt 0 ]] | |
then | |
usbkbd_ids=`xinput -list | grep "USBKey Chip USBKey Module" | awk -F'=' '{print $2}' | cut -c 1-2` | |
usbkbd_layout="us" | |
for ID in $usbkbd_ids | |
do | |
setxkbmap -device "${ID}" -layout "${usbkbd_layout}" | |
done |
NewerOlder