Skip to content

Instantly share code, notes, and snippets.

@lzghzr
lzghzr / 544+ flr 解锁56G直连.md
Last active August 10, 2024 11:14
544+ flr 解锁56G直连
@shantur
shantur / pikvm-install.sh
Last active December 20, 2023 04:04
PiKVM on RockPro installation
# For installing PiKVM on RockPro64 with HDMI-USB Capture device.
# Install Manjaro linux
# Run this script as sudo pikvm-install.sh
# Enable Otg on USB-C Port
pacman -Syu --noconfirm dtc
fdtput -t s /boot/dtbs/rockchip/rk3399-rockpro64.dtb /usb@fe800000/usb@fe800000 dr_mode peripheral
@hyphop
hyphop / Lakka VIM1.md
Created October 14, 2019 07:13
Lakka VIM1

LAKKA OS

Rebuilt by ## hyphop ##

DEVICES

NOTES

@shaielc
shaielc / SlaveSPIClass.cpp
Last active April 28, 2023 10:18
SlaveSPIClass_esp32_Arduino
#include<SlaveSPIClass.h>
int SlaveSPI::size = 0;
SlaveSPI** SlaveSPI::SlaveSPIVector = NULL;
void setupIntr(spi_slave_transaction_t * trans)
{
for(int i=0 ; i<SlaveSPI::size;i++)
{
if(SlaveSPI::SlaveSPIVector[i]->match(trans))
SlaveSPI::SlaveSPIVector[i]->setup_intr(trans);
}