aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-rockchip
Commit message (Expand)AuthorAgeFilesLines
* rockchip: rename "Rock Pi 4" to "Rock Pi 4A"Adrian Schmutzler2021-10-101-1/+1
* treewide: use AUTORELEASE on all uboot-* packagesAdrian Schmutzler2021-10-021-1/+1
* uboot-rockchip: update to v2021.07David Bauer2021-08-155-310/+70
* uboot-rockchip: add NanoPi R4S supportTianling Shen2021-06-102-0/+301
* uboot-rockchip: update to v2021.04David Bauer2021-04-205-671/+31
* uboot-rockchip: fix RockPro64 boot from eMMCMarty Jones2021-02-011-0/+27
* uboot-rockchip: update NanoPi R2S patchesDavid Bauer2021-01-143-129/+178
* uboot-rockchip: update to v2021.01Marty Jones2021-01-145-111/+127
* uboot-rockchip: add Rock Pi 4 supportMarty Jones2020-10-031-0/+11
* Revert "uboot-rockchip: update NanoPi R2S patches"David Bauer2020-10-034-191/+124
* uboot-rockchip: update NanoPi R2S patchesDavid Bauer2020-09-304-123/+191
* uboot-rockchip: add NanoPi R2S supportDavid Bauer2020-07-285-2/+812
* uboot-rockchip: update to v2020.07David Bauer2020-07-282-3/+26
* atf-rockchip: update to 2.3Lucian Cristian2020-07-281-1/+1
* uboot-rockchip: fix ident stringPetr Štetiar2020-04-201-1/+1
* uboot-rockchip: add new packageTobias Mädel2020-04-201-0/+57
Y or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "scythe.h" void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up matrix_init_user(); } void matrix_scan_kb(void) { // put your looping keyboard code here // runs every cycle (a lot) matrix_scan_user(); } bool process_record_kb(uint16_t keycode, keyrecord_t *record) { // put your per-action keyboard code here // runs for every action, just before processing by the firmware return process_record_user(keycode, record); } void led_set_kb(uint8_t usb_led) { // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here led_set_user(usb_led); }