- Fix deprecation warning for
board/pico-debug.cfg - Add support for FLASH_SIZE customisation in
target/rp2040.cfg(Allow skip flash auto_probe) - Add support for 2 new NOR Flash in
src/flash/nor/spi.c(Fix "Error: Unknown flash device")
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
| #ifndef OV7670_REGISTERS_H | |
| #define OV7670_REGISTERS_H | |
| #pragma once | |
| /** | |
| * @brief OmniVision OV7670 RegisterSet | |
| * | |
| * Provides a list and description of the Device Control registers contained in the OV7670/OV7171. | |
| * For all register Enable/Disable bits, ENABLE = 1 and DISABLE = 0. |
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
| // See: Openbench Logic Sniffer (OLS) / SUMP protocol | |
| // https://sigrok.org/wiki/SUMP_compatibles | |
| // https://sigrok.org/wiki/Openbench_Logic_Sniffer | |
| // https://sigrok.org/gitweb/?p=libsigrok.git;a=blob_plain;f=src/hardware/openbench-logic-sniffer/protocol.h;hb=HEAD | |
| // https://firmware.buspirate.com/binmode-reference/protocol-sump | |
| // https://web.archive.org/web/20190317154112if_/http://mygizmos.org/ols/Logic-Sniffer-FPGA-Spec.pdf | |
| #include <QCoreApplication> | |
| #include <QDebug> |
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
| # file gd32f1xx.cfg | |
| # script for gd32f1x family | |
| set CPUTAPID 0x2ba01477 | |
| # optional name | |
| set CHIPNAME gd32f1x | |
| # autodetect flash size | |
| # set FLASH_SIZE 0 | |
| # use SWD |
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
| #MicroXplorer Configuration settings - do not modify | |
| CAD.formats= | |
| CAD.pinconfig= | |
| CAD.provider= | |
| FREERTOS.IPParameters=Tasks01,configUSE_NEWLIB_REENTRANT | |
| FREERTOS.Tasks01=defaultTask,24,128,StartDefaultTask,Default,NULL,Dynamic,NULL,NULL | |
| FREERTOS.configUSE_NEWLIB_REENTRANT=1 | |
| File.Version=6 | |
| GPIO.groupedBy=Group By Peripherals | |
| KeepUserPlacement=false |
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
| // MG90S mount | |
| include <motor-gears.scad> | |
| MG_MOUNT_W = 4.4; | |
| MG_MOUNT_D = 0.2; | |
| MG_MOUNT_HOLE_D = MG90S_MOUNT_HOLE_D - 0.2; | |
| MG_MOUNT_SIZE=[ | |
| MG90S_BLOCK_SIZE.x + 2 * (MG_MOUNT_W + MG_MOUNT_D) | |
| , MG90S_BLOCK_SIZE.y | |
| , MG90S_MOUNT_OFFSET + MG_MOUNT_W |
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
| /* | |
| 0 | |
| +--> X (width) | |
| | | |
| V | |
| Y (height) | |
| +---------------------------. | |
| | o<-a \ | |
| +-----+ | | |
| | USB | \ |
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
| // https://en.wikipedia.org/wiki/UTF-8 | |
| #include <iostream> | |
| #include <string> | |
| #include <iomanip> | |
| using u_char = unsigned char; | |
| enum utf_mask: u_char | |
| { |
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/sh | |
| RULES_TMP_FILE=/tmp/99-gpio-subsystem.rules | |
| # add 'gpio' group | |
| /usr/sbin/addgroup --system gpio | |
| # install udev rules | |
| /usr/bin/echo 'SUBSYSTEM=="gpio", MODE="0660", GROUP="gpio"' > "$RULES_TMP_FILE" | |
| /usr/bin/install --verbose --mode=0644 "$RULES_TMP_FILE" /etc/udev/rules.d/ |
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
| # add target from generated "*.cmake" | |
| function(fill_project VC_PROJECT_FILE CONFIG_NAME) | |
| set(_project_file "${VC_PROJECT_FILE}.cmake") | |
| set(_all_sources) | |
| cmake_path(GET _project_file PARENT_PATH _project_path) | |
| if ("${_project_path}" STREQUAL "") | |
| set(_project_path "./") |
NewerOlder