repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tests_manual/thread_test.c | null | null | null | null | null | null | C | 2026-05-04T18:29:41.068233 | #include <stdio.h>
#include <pthread.h>
void start1() {
int i = 100;
while (1) { printf("t1 %d\n", i++); sleep(1); }
}
void start2() {
int i = 200;
while (1) { printf("t2 %d\n", i++); sleep(1); }
}
int main() {
pthread_t t1, t2;
pthread_create(&t1, NULL, start1, NULL);
pthread_create(&t2, NULL, start2,... |
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tests_manual/vortex/vortex4.c | null | null | null | null | null | null | C | 2026-05-04T18:29:41.763027 | // -- andrewg, original author was zen-parse :)
#include <stdlib.h>
int main(int argc, char **argv)
{
if(argc) exit(0);
printf(argv[3]);
exit(EXIT_FAILURE);
}
|
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tracers/pin/strace/syscalls.h | null | null | null | null | null | null | C | 2026-05-04T18:29:41.792436 | #define SYSCALL_MAXARGS 6
enum argtype {
ARG_INT,
ARG_PTR,
ARG_STR,
ARG_UNKNOWN
};
struct syscall_entry {
const char *name;
int nargs;
enum argtype args[SYSCALL_MAXARGS];
};
|
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tracers/pin/strace/syscallents_64.h | null | null | null | null | null | null | C | 2026-05-04T18:29:41.793083 | const int MAX_SYSCALL_NUM = 311;
struct syscall_entry syscalls[] = {
{ // 0
/*.name =*/ "read",
/*.nargs =*/ 3,
/*.args =*/ {ARG_INT, ARG_PTR, ARG_INT, ARG_UNKNOWN, ARG_UNKNOWN, ARG_UNKNOWN}},
{ // 1
/*.name =*/ "write",
/*.nargs =*/ 3,
/*.args =*/ {ARG_INT, ARG_PTR, ARG_INT, ARG_UNKNOWN, ARG_... |
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tracers/pin/strace/syscallents_32.h | null | null | null | null | null | null | C | 2026-05-04T18:29:41.949707 | const int MAX_SYSCALL_NUM = 348;
struct syscall_entry syscalls[] = {
{ // 0
/*.name =*/ "restart_syscall",
/*.nargs =*/ 0,
/*.args =*/ {ARG_UNKNOWN, ARG_UNKNOWN, ARG_UNKNOWN, ARG_UNKNOWN, ARG_UNKNOWN, ARG_UNKNOWN}},
{ // 1
/*.name =*/ "exit",
/*.nargs =*/ 1,
/*.args =*/ {ARG_INT, ARG_UNKNOWN, ... |
geohot/qira | https://github.com/geohot/qira | null | null | null | null | 4,065 | null | null | mit | null | null | null | null | null | null | null | tracers/pin/strace/osx_syscalls.h | null | null | null | null | null | null | C | 2026-05-04T18:29:42.019218 | #ifdef __cplusplus
extern "C" {
#endif
#define SYSCALL_MAXARGS 8
enum argtype {
ARG_INT,
ARG_PTR,
ARG_STR,
ARG_UNKNOWN
};
const int MAX_SYSCALL_NUM = 490;
struct syscall_entry {
const char *name;
int nargs;
enum argtype args[SYSCALL_MAXARGS];
} syscalls[] = {
{.name = "syscall", .nargs = 1, .args = { ARG_INT... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/battery_status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:53.435711 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/display.h>
#include <zmk/battery.h>
#include "battery_status.h"
#include <zmk/usb.h>
#include <zmk/events/usb_conn_s... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/custom_status_screen.h | null | null | null | null | null | null | C | 2026-05-04T18:29:53.437108 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
lv_obj_t *zmk_display_status_screen(); |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/USB_connected.c | null | null | null | null | null | null | C | 2026-05-04T18:29:53.444312 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_USB_CONNECTED
#define LV_ATTRIBUTE_IMG_USB_CONNECTED
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_USB_CONNECTED uin... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_0.c | null | null | null | null | null | null | C | 2026-05-04T18:29:53.444850 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_0
#define LV_ATTRIBUTE_IMG_BATT_0
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BATT_0... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/battery_status.h | null | null | null | null | null | null | C | 2026-05-04T18:29:53.455777 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
struct zmk_widget_battery_status {
sys_snode_t node;
lv_obj_t *obj;
};
int zmk_widget_battery_status_init(struct zmk_widget_battery_status *widget, lv_obj_t *parent);
l... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_25.c | null | null | null | null | null | null | C | 2026-05-04T18:29:53.456845 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_25
#define LV_ATTRIBUTE_IMG_BATT_25
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BATT... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/custom_status_screen.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.121054 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include "widgets/battery_status.h"
#include "widgets/peripheral_status.h"
#include "widgets/output_status.h"
#include "widgets/layer_status.h"
#include "custom_status_screen.h"
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CON... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_100_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.166071 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_100_CHG
#define LV_ATTRIBUTE_IMG_BATT_100_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUT... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_0_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.352383 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_0_CHG
#define LV_ATTRIBUTE_IMG_BATT_0_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IM... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.771911 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_75_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.773301 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_75_CHG
#define LV_ATTRIBUTE_IMG_BATT_75_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_100.c | null | null | null | null | null | null | C | 2026-05-04T18:29:54.863172 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_100
#define LV_ATTRIBUTE_IMG_BATT_100
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BA... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising_1.c | null | null | null | null | null | null | C | 2026-05-04T18:29:55.092696 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_1
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_1
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising_2.c | null | null | null | null | null | null | C | 2026-05-04T18:29:55.398469 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_2
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_2
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising_3.c | null | null | null | null | null | null | C | 2026-05-04T18:29:55.436498 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_3
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_3
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising_4.c | null | null | null | null | null | null | C | 2026-05-04T18:29:55.511542 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_4
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_4
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_advertising_5.c | null | null | null | null | null | null | C | 2026-05-04T18:29:55.741286 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_5
#define LV_ATTRIBUTE_IMG_BLUETOOTH_ADVERTISING_5
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_1.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.013443 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_1
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_1
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_BLU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_2.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.108568 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_2
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_2
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_BLU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_3.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.109857 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_3
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_3
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_BLU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_4.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.475830 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_4
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_4
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_BLU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_5.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.693554 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_5
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_5
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_BLU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_connected_right.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.763494 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_RIGHT
#define LV_ATTRIBUTE_IMG_BLUETOOTH_CONNECTED_RIGHT
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBU... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/bluetooth_disconnected_right.c | null | null | null | null | null | null | C | 2026-05-04T18:29:56.799307 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BLUETOOTH_DISCONNECTED_RIGHT
#define LV_ATTRIBUTE_IMG_BLUETOOTH_DISCONNECTED_RIGHT
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_A... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/layers.c | null | null | null | null | null | null | C | 2026-05-04T18:29:57.147179 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_LAYERS
#define LV_ATTRIBUTE_IMG_LAYERS
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_LAYERS... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/layers2.c | null | null | null | null | null | null | C | 2026-05-04T18:29:57.375333 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_LAYERS2
#define LV_ATTRIBUTE_IMG_LAYERS2
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_LAYE... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/zenlogo.c | null | null | null | null | null | null | C | 2026-05-04T18:29:57.376580 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_ZENLOGO
#define LV_ATTRIBUTE_IMG_ZENLOGO
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_ZENL... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/layer_status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:57.442593 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/display.h>
#include "layer_status.h"
#include <zmk/events/layer_state_changed.h>
#include <zmk/event_manager.h>
#incl... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/layer_status.h | null | null | null | null | null | null | C | 2026-05-04T18:29:57.803572 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
struct zmk_widget_layer_status {
sys_snode_t node;
lv_obj_t *obj;
};
int zmk_widget_layer_status_init(struct zmk_widget_layer_status *widget, lv_obj_t *parent);
lv_obj_t... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/output_status.h | null | null | null | null | null | null | C | 2026-05-04T18:29:58.024776 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
struct zmk_widget_output_status {
sys_snode_t node;
lv_obj_t *obj;
};
int zmk_widget_output_status_init(struct zmk_widget_output_status *widget, lv_obj_t *parent);
lv_ob... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/peripheral_status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:58.069869 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/display.h>
#include "peripheral_status.h"
#include <zmk/event_manager.h>
#include <zmk/split/bluetooth/peripheral.h>... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/output_status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:58.134910 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/bluetooth/services/bas.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/display.h>
#include "output_status.h"
#include <zmk/event_manager.h>
#inc... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/peripheral_status.h | null | null | null | null | null | null | C | 2026-05-04T18:29:58.452834 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
struct zmk_widget_peripheral_status {
sys_snode_t node;
lv_obj_t *obj;
};
int zmk_widget_peripheral_status_init(struct zmk_widget_peripheral_status *widget,
... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/moergo/glove80/usb_serial_number.c | null | null | null | null | null | null | C | 2026-05-04T18:29:58.716235 | /*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#include <string.h>
#include <zephyr/usb/usb_device.h>
#include <zephyr/drivers/hwinfo.h>
#include "usb_descriptor.h"
#define LOG_LEVEL CONFIG_USB_DEVICE_LOG_LEVEL
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(usb_descriptor);
... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/custom_status_screen.c | null | null | null | null | null | null | C | 2026-05-04T18:29:58.758264 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include "widgets/status.h"
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#if IS_ENABLED(CONFIG_NICE_VIEW_WIDGET_STATUS)
static struct zmk_widget_status status_widget;
#endif
lv_obj_t *zmk_displa... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/art.c | null | null | null | null | null | null | C | 2026-05-04T18:29:58.882270 | /*
*
* Copyright (c) 2023 Collin Hodge
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BALLOON
#define LV_ATTRIBUTE_IMG_BALLOON
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_A... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_50_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.304694 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_50_CHG
#define LV_ATTRIBUTE_IMG_BATT_50_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_25_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.358241 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_25_CHG
#define LV_ATTRIBUTE_IMG_BATT_25_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_50.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.359084 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_50
#define LV_ATTRIBUTE_IMG_BATT_50
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BATT... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_5.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.360814 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_5
#define LV_ATTRIBUTE_IMG_BATT_5
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BATT_5... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_5_chg.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.362018 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_5_CHG
#define LV_ATTRIBUTE_IMG_BATT_5_CHG
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IM... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/bolt.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.362895 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BOLT
#define LV_ATTRIBUTE_IMG_BOLT
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BOL... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/lowprokb/corneish_zen/widgets/icons/batt_75.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.428138 | /*
*
* Copyright (c) 2021 Darryl deHaan
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#ifndef LV_ATTRIBUTE_MEM_ALIGN
#define LV_ATTRIBUTE_MEM_ALIGN
#endif
#ifndef LV_ATTRIBUTE_IMG_BATT_75
#define LV_ATTRIBUTE_IMG_BATT_75
#endif
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BATT... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/peripheral_status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.499086 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/random/random.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/battery.h>
#include <zmk/display.h>
#include <zmk/events/usb_conn_state_cha... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/peripheral_status.h | null | null | null | null | null | null | C | 2026-05-04T18:29:59.686054 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
#include "util.h"
struct zmk_widget_status {
sys_snode_t node;
lv_obj_t *obj;
lv_color_t cbuf[CANVAS_SIZE * CANVAS_SIZE];
struct status_state state;
};
in... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/status.c | null | null | null | null | null | null | C | 2026-05-04T18:29:59.686760 | /*
*
* Copyright (c) 2025 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
#include <zmk/battery.h>
#include <zmk/display.h>
#include "status.h"
#include <zmk/events/usb_conn_state_changed.h>
#inclu... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/status.h | null | null | null | null | null | null | C | 2026-05-04T18:30:00.029842 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <lvgl.h>
#include <zephyr/kernel.h>
#include "util.h"
struct zmk_widget_status {
sys_snode_t node;
lv_obj_t *obj;
uint8_t cbuf[CANVAS_BUF_SIZE];
uint8_t cbuf2[CANVAS_BUF_SIZE];
uint8_t cb... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/util.c | null | null | null | null | null | null | C | 2026-05-04T18:30:00.030585 | /*
*
* Copyright (c) 2023 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <zephyr/kernel.h>
#include "util.h"
LV_IMG_DECLARE(bolt);
void rotate_canvas(lv_obj_t *canvas) {
uint8_t *buf = lv_canvas_get_draw_buf(canvas)->data;
static uint8_t buf_copy[CANVAS_BUF_SIZE];
memcpy(buf_copy,... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/include/drivers/behavior.h | null | null | null | null | null | null | C | 2026-05-04T18:30:00.031203 | /*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#pragma once
#include <zephyr/types.h>
#include <stddef.h>
#include <zephyr/sys/util.h>
#include <string.h>
#include <zephyr/device.h>
#include <zmk/keys.h>
#include <zmk/sensors.h>
#include <zmk/behavior.h>
/**
* @cond INTERNAL_HI... |
zmkfirmware/zmk | https://github.com/zmkfirmware/zmk | null | null | null | null | 4,036 | null | null | mit | null | null | null | null | null | null | null | app/boards/shields/nice_view/widgets/util.h | null | null | null | null | null | null | C | 2026-05-04T18:30:00.344618 | /*
*
* Copyright (c) 2025 The ZMK Contributors
* SPDX-License-Identifier: MIT
*
*/
#include <lvgl.h>
#include <zmk/endpoints.h>
#define NICEVIEW_PROFILE_COUNT 5
#define CANVAS_SIZE 68
#define CANVAS_COLOR_FORMAT LV_COLOR_FORMAT_L8 // smallest type supported by sw_rotate
#define CANVAS_BUF_SIZE ... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/arm_const_structs.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.288386 | /* ----------------------------------------------------------------------
* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
*
* $Date: 19. March 2015
* $Revision: V.1.4.5
*
* Project: CMSIS DSP Library
* Title: arm_const_structs.h
*
* Description: This file has constant structs that are initi... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cm0.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.303358 | /**************************************************************************//**
* @file core_cm0.h
* @brief CMSIS Cortex-M0 Core Peripheral Access Layer Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c)... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.318664 | /**
******************************************************************************
* @file system_stm32f0xx.h
* @author MCD Application Team
* @brief CMSIS Cortex-M0 Device System Source File for STM32F0xx devices.
******************************************************************************
* @att... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/cmsis_armcc_V6.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.320401 | /**************************************************************************//**
* @file cmsis_armcc_V6.h
* @brief CMSIS Cortex-M Core Function/Instruction Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/arm_common_tables.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.324040 | /* ----------------------------------------------------------------------
* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
*
* $Date: 19. October 2015
* $Revision: V.1.4.5 a
*
* Project: CMSIS DSP Library
* Title: arm_common_tables.h
*
* Description: This file has extern declaration for comm... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/cmsis_gcc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.328213 | /**************************************************************************//**
* @file cmsis_gcc.h
* @brief CMSIS Cortex-M Core Function/Instruction Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 20... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cm3.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.356488 | /**************************************************************************//**
* @file core_cm3.h
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c)... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cm0plus.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.359103 | /**************************************************************************//**
* @file core_cm0plus.h
* @brief CMSIS Cortex-M0+ Core Peripheral Access Layer Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyrigh... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/cmsis_armcc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.360261 | /**************************************************************************//**
* @file cmsis_armcc.h
* @brief CMSIS Cortex-M Core Function/Instruction Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) ... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.486579 | /**
******************************************************************************
* @file stm32f0xx.h
* @author MCD Application Team
* @brief CMSIS STM32F0xx Device Peripheral Access Layer Header File.
*
* The file is the unique include file that the application progra... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cmFunc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.894757 | /**************************************************************************//**
* @file core_cmFunc.h
* @brief CMSIS Cortex-M Core Function Access Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 2009 ... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cmInstr.h | null | null | null | null | null | null | C | 2026-05-04T18:30:06.912754 | /**************************************************************************//**
* @file core_cmInstr.h
* @brief CMSIS Cortex-M Core Instruction Access Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 2... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_cmSimd.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.002036 | /**************************************************************************//**
* @file core_cmSimd.h
* @brief CMSIS Cortex-M SIMD Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 2009 - 2015 ARM LIMIT... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_sc000.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.004703 | /**************************************************************************//**
* @file core_sc000.h
* @brief CMSIS SC000 Core Peripheral Access Layer Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 2... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.007567 | /**
******************************************************************************
* @file stm32f0xx_hal.h
* @author MCD Application Team
* @brief This file contains all the functions prototypes for the HAL
* module driver.
********************************************************************... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.023705 | /**
******************************************************************************
* @file stm32f0xx_hal_adc.h
* @author MCD Application Team
* @brief Header file containing functions prototypes of ADC HAL library.
******************************************************************************
* @atten... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.056220 | /**
******************************************************************************
* @file stm32f0xx_hal_adc_ex.h
* @author MCD Application Team
* @brief Header file of ADC HAL Extension module.
******************************************************************************
* @attention
*
* <h2><ce... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.164049 | /**
******************************************************************************
* @file stm32f0xx_hal_cortex.h
* @author MCD Application Team
* @brief Header file of CORTEX HAL module.
******************************************************************************
* @attention
*
* <h2><center>&c... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/CMSIS/Include/core_sc300.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.185923 | /**************************************************************************//**
* @file core_sc300.h
* @brief CMSIS SC300 Core Peripheral Access Layer Header File
* @version V4.30
* @date 20. October 2015
******************************************************************************/
/* Copyright (c) 2... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.223867 | /**
******************************************************************************
* @file stm32f0xx_hal_def.h
* @author MCD Application Team
* @brief This file contains HAL common defines, enumeration, macros and
* structures definitions.
***************************************************... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.533341 | /**
******************************************************************************
* @file stm32f0xx_hal_dma.h
* @author MCD Application Team
* @brief Header file of DMA HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.550125 | /**
******************************************************************************
* @file stm32f0xx_hal_dma_ex.h
* @author MCD Application Team
* @brief Header file of DMA HAL Extension module.
******************************************************************************
* @attention
*
* <h2><ce... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.640974 | /**
******************************************************************************
* @file stm32f0xx_hal_gpio.h
* @author MCD Application Team
* @brief Header file of GPIO HAL module.
******************************************************************************
* @attention
*
* <h2><center>©... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.646972 | /**
******************************************************************************
* @file stm32f0xx_hal_flash_ex.h
* @author MCD Application Team
* @brief Header file of Flash HAL Extended module.
******************************************************************************
* @attention
*
* <h2>... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.648193 | /**
******************************************************************************
* @file stm32f0xx_hal_flash.h
* @author MCD Application Team
* @brief Header file of Flash HAL module.
******************************************************************************
* @attention
*
* <h2><center>&cop... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.681711 | /**
******************************************************************************
* @file stm32f0xx_hal_gpio_ex.h
* @author MCD Application Team
* @brief Header file of GPIO HAL Extension module.
******************************************************************************
* @attention
*
* <h2><... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.730898 | /**
******************************************************************************
* @file stm32f0xx_hal_i2c.h
* @author MCD Application Team
* @brief Header file of I2C HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_iwdg.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.898343 | /**
******************************************************************************
* @file stm32f0xx_hal_iwdg.h
* @author MCD Application Team
* @brief Header file of IWDG HAL module.
******************************************************************************
* @attention
*
* <h2><center>©... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pcd.h | null | null | null | null | null | null | C | 2026-05-04T18:30:07.899647 | /**
******************************************************************************
* @file stm32f0xx_hal_pcd.h
* @author MCD Application Team
* @brief Header file of PCD HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.017203 | /**
******************************************************************************
* @file stm32f0xx_hal_i2c_ex.h
* @author MCD Application Team
* @brief Header file of I2C HAL Extended module.
******************************************************************************
* @attention
*
* <h2><cen... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pcd_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.364946 | /**
******************************************************************************
* @file stm32f0xx_hal_pcd_ex.h
* @author MCD Application Team
* @brief Header file of PCD HAL Extension module.
******************************************************************************
* @attention
*
* <h2><ce... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.366403 | /**
******************************************************************************
* @file stm32f0xx_hal_pwr.h
* @author MCD Application Team
* @brief Header file of PWR HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.517583 | /**
******************************************************************************
* @file stm32f0xx_hal_pwr_ex.h
* @author MCD Application Team
* @brief Header file of PWR HAL Extension module.
******************************************************************************
* @attention
*
* <h2><ce... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rtc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.574748 | /**
******************************************************************************
* @file stm32f0xx_hal_rtc.h
* @author MCD Application Team
* @brief Header file of RTC HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rtc_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.623102 | /**
******************************************************************************
* @file stm32f0xx_hal_rtc_ex.h
* @author MCD Application Team
* @brief Header file of RTC HAL Extended module.
******************************************************************************
* @attention
*
* <h2><cen... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.689193 | /**
******************************************************************************
* @file stm32f0xx_hal_rcc.h
* @author MCD Application Team
* @brief Header file of RCC HAL module.
******************************************************************************
* @attention
*
* <h2><center>© C... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:08.793126 | /**
******************************************************************************
* @file stm32f0xx_hal_rcc_ex.h
* @author MCD Application Team
* @brief Header file of RCC HAL Extension module.
******************************************************************************
* @attention
*
* <h2><ce... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:09.012546 | /**
******************************************************************************
* @file stm32f0xx_hal_tim_ex.h
* @author MCD Application Team
* @brief Header file of TIM HAL Extended module.
******************************************************************************
* @attention
*
* <h2><cen... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_uart.h | null | null | null | null | null | null | C | 2026-05-04T18:30:09.053570 | /**
******************************************************************************
* @file stm32f0xx_hal_uart.h
* @author MCD Application Team
* @brief Header file of UART HAL module.
******************************************************************************
* @attention
*
* <h2><center>©... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c | null | null | null | null | null | null | C | 2026-05-04T18:30:09.170000 | /**
******************************************************************************
* @file stm32f0xx_hal.c
* @author MCD Application Team
* @brief HAL module driver.
* This is the common part of the HAL initialization
*
@verbatim
===========================================================... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_uart_ex.h | null | null | null | null | null | null | C | 2026-05-04T18:30:09.182566 | /**
******************************************************************************
* @file stm32f0xx_hal_uart_ex.h
* @author MCD Application Team
* @brief Header file of UART HAL Extended module.
******************************************************************************
* @attention
*
* <h2><c... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c | null | null | null | null | null | null | C | 2026-05-04T18:30:09.493052 | /**
******************************************************************************
* @file stm32f0xx_hal_adc_ex.c
* @author MCD Application Team
* @brief This file provides firmware functions to manage the following
* functionalities of the Analog to Digital Convertor (ADC)
* periph... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc.c | null | null | null | null | null | null | C | 2026-05-04T18:30:09.494215 | /**
******************************************************************************
* @file stm32f0xx_hal_adc.c
* @author MCD Application Team
* @brief This file provides firmware functions to manage the following
* functionalities of the Analog to Digital Convertor (ADC)
* periphera... |
dekuNukem/daytripper | https://github.com/dekuNukem/daytripper | null | null | null | null | 4,029 | null | null | mit | null | null | null | null | null | null | null | firmware/code/others/experimental/tx_eeprom_new_sensor/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c | null | null | null | null | null | null | C | 2026-05-04T18:30:09.880946 | /**
******************************************************************************
* @file stm32f0xx_hal_dma.c
* @author MCD Application Team
* @brief DMA HAL module driver.
*
* This file provides firmware functions to manage the following
* functionalities of the Direct Memory ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.