- TPS65216
- TL;DR
- Pros: cheap, bonus LDO
- Cons: inefficient, large footprint, no NVM
- 3 x buck @ 1.8A, 1 x buck/boost @ 1.6A, 1 x LDO
- 6 x 6mm QFN package
- Push button monitor
- TL;DR
- No internal NVM, needs to be configured on boot
This file contains 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
# Reusable interface library target for GRRLIB which includes dependencies and compile flags | |
set(GRRLIB_TARGET grrlib_interface) | |
# Include the pkg-config module | |
find_package(PkgConfig REQUIRED) | |
pkg_check_modules(GRRLIB REQUIRED freetype2 libpng libjpeg) | |
# Define the library target | |
add_library(${GRRLIB_TARGET} INTERFACE) |
This file contains 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/env bash | |
mkdir -p temp | |
cd temp | |
# Export gerbers | |
kicad-cli pcb export gerbers ../pcbname.kicad_pcb -l F.Cu,B.Cu,F.Paste,B.Paste,F.SilkS,B.SilkS,F.Mask,B.Mask,Edge.Cuts | |
# Generate SVGs | |
tracespace -L *.* |
This file contains 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
#--------------------------------------------------------------------------------- | |
# devkitPPC rules for building with Clang | |
# | |
# How to use: | |
# - Copy this file into your DEVKITPPC path: | |
# cp wii_clang_rules $DEVKITPPC | |
# | |
# - Link Clang into your DEVKITPPC path: | |
# ln -s `which clang` $DEVKITPPC/bin/powerpc-eabi-clang | |
# |
This file contains 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
// // cur_evnt_full.begin format | |
// { | |
// "day":12, | |
// "month":9, | |
// "year":2019, | |
// "hour24":15, | |
// "hour12":3, | |
// "minutes":0, | |
// "ampm":"pm", | |
// // offset in minutes from now, |
This file contains 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
html, body { | |
height: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
#chart { | |
height: 100%; | |
} |
NewerOlder