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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | steps/step-7-webserver/pico-w5500/tools/bin2uf2.c | null | null | null | null | null | null | C | 2026-05-04T18:26:53.611341 | // Copyright (c) 2022 Cesanta Software Limited
// All rights reserved
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int fail(const char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
putchar('\n');
exit(EXIT_FAILURE);
}... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | steps/step-7-webserver/pico-w5500/startup.c | null | null | null | null | null | null | C | 2026-05-04T18:26:53.626334 | // Copyright (c) 2022 Cesanta Software Limited
// All rights reserved
#include "hal.h"
// Startup code
__attribute__((naked, section(".boot"))) void _reset(void) {
// This code is executed by the boot ROM, and it must access flash, where
// this code is located, and "eXecute In Place" (XIP). Flash is external,
... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | templates/blinky/esp32-c3/main.c | null | null | null | null | null | null | C | 2026-05-04T18:26:53.651145 | // SPDX-FileCopyrightText: 2022-2023 Cesanta Software Limited
// SPDX-License-Identifier: MIT
#include "hal.h"
#define BLINK_PERIOD_MS 500 // LED blinking period in millis
#define LOG_PERIOD_MS 1000 // Info log period in millis
void SystemInit(void) { // Called automatically by startup code
clock_init();
}
st... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | templates/blinky/frdm-mcxw71/hal.h | null | null | null | null | null | null | C | 2026-05-04T18:26:53.651627 | // Copyright (c) 2025 Cesanta Software Limited
// SPDX-License-Identifier: MIT
#pragma once
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "MCXW716C.h"
#include "MCXW716C_COMMON.h"
#define BIT(x) (1UL << (x))
#define CLRSET(R, CLEARMASK, SETMASK) (R) = ((R) & ~(CLEARMASK)) ... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | templates/blinky/esp32-c3/startup.c | null | null | null | null | null | null | C | 2026-05-04T18:26:53.658673 | // SPDX-FileCopyrightText: 2021-2023 Cesanta Software Limited
// SPDX-License-Identifier: MIT
#include "hal.h"
extern int main(void);
extern void SystemInit(void);
extern char _sbss, _ebss, _end, _eram;
static char *s_heap_start, *s_heap_end, *s_brk;
void *sbrk(int diff) {
char *old = s_brk;
if (&s_brk[diff] > ... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | steps/step-7-webserver/pico-w5500/mongoose.h | null | null | null | null | null | null | C | 2026-05-04T18:26:53.678045 | // Copyright (c) 2004-2013 Sergey Lyubka
// Copyright (c) 2013-2022 Cesanta Software Limited
// All rights reserved
//
// This software is dual-licensed: you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation. For the terms... |
cpq/bare-metal-programming-guide | https://github.com/cpq/bare-metal-programming-guide | null | null | null | null | 4,618 | null | null | mit | null | null | null | null | null | null | null | templates/blinky/esp32-c3/hal.h | null | null | null | null | null | null | C | 2026-05-04T18:26:53.678686 | // SPDX-FileCopyrightText: 2022-2023 Cesanta Software Limited
// SPDX-License-Identifier: MIT
//
// https://www.espressif.com/sites/default/files/documentation/esp32-c3_technical_reference_manual_en.pdf
#ifndef LED_PIN
#define LED_PIN 2 // Default LED pin
#endif
#ifndef BUTTON_PIN
#define BUTTON_PIN 9 // Default Bu... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/array.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.342397 | #include "strm.h"
int
strm_array_p(strm_value v)
{
switch (strm_value_tag(v)) {
case STRM_TAG_ARRAY:
case STRM_TAG_STRUCT:
return TRUE;
default:
return FALSE;
}
}
strm_array
strm_ary_new(const strm_value* p, strm_int len)
{
struct strm_array* ary;
strm_value *buf;
ary = malloc(sizeof(struct s... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/atomic.h | null | null | null | null | null | null | C | 2026-05-04T18:26:58.361598 | #define strm_atomic_cas(a,b,c) __sync_bool_compare_and_swap(&(a),(b),(c))
#define strm_atomic_add(a,b) __sync_fetch_and_add(&(a),(b))
#define strm_atomic_sub(a,b) __sync_fetch_and_sub(&(a),(b))
#define strm_atomic_inc(a) __sync_fetch_and_add(&(a),1)
#define strm_atomic_dec(a) __sync_fetch_and_sub(&(a),1)
#define strm_a... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/graph.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.362262 | /* stream graph generator inspired by stag */
/* https://github.com/seenaburns/stag */
#include "strm.h"
#include "atomic.h"
#include <stdio.h>
#include <stdlib.h>
#ifndef _WIN32
#include <sys/ioctl.h>
#include <termios.h>
#include <unistd.h>
#include <signal.h>
/* signal handling */
static int refcnt = 0;
static int... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/init.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.364511 | #include "strm.h"
void strm_number_init(strm_state* state);
void strm_array_init(strm_state* state);
void strm_string_init(strm_state* state);
void strm_latch_init(strm_state* state);
void strm_iter_init(strm_state* state);
void strm_stat_init(strm_state* state);
void strm_rand_init(strm_state* state);
void strm_sort_... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/core.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.365076 | #include "strm.h"
#include "queue.h"
#include "atomic.h"
#include <pthread.h>
#include <sched.h>
struct strm_worker {
pthread_t th;
} *workers;
static struct strm_queue* queue;
static struct strm_queue* prod_queue;
static int worker_max;
static int stream_count = 0;
/* internal variable to tell multi-threaded mode... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/args.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.371116 | #include "strm.h"
#include <stdarg.h>
/*
parse arguments from argc/argv.
strm_parse_args(strm, argc, argv, format, ...)
returns STRM_OK / STRM_NG
format specifiers:
string streem type C type note
-----------------------------------------------------------------------------------... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/csv.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.372036 | /* copied and modified from https://github.com/semitrivial/csv_parser */
/* MIT license */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include "strm.h"
static int
count_fields(strm_string line, char sep)
{
con... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/io.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.373626 | #include "strm.h"
#include <pthread.h>
#include "pollfd.h"
#include <errno.h>
#ifndef _WIN32
# include <sys/uio.h>
# include <sys/socket.h>
#else
# include <ws2tcpip.h>
#endif
#include <sys/stat.h>
static pthread_t io_worker;
static int io_wait_num = 0;
static int epoll_fd;
#define STRM_IO_NOWAIT 1
#define STRM_IO_NO... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/env.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.408449 | #include "strm.h"
#include "khash.h"
KHASH_MAP_INIT_INT64(env, strm_value);
typedef khash_t(env) strm_env;
strm_env *globals;
static int
env_set(strm_env *env, strm_string name, strm_value val)
{
int r;
khiter_t k;
assert(env != globals || !strm_event_loop_started);
if (!strm_str_intern_p(name)) {
name =... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/exec.c | null | null | null | null | null | null | C | 2026-05-04T18:26:58.460235 | #include "strm.h"
#include "node.h"
#define NODE_ERROR_RUNTIME 0
#define NODE_ERROR_RETURN 1
#define NODE_ERROR_SKIP 2
static void
strm_clear_exc(strm_stream* strm)
{
if (strm->exc) {
free(strm->exc);
}
strm->exc = NULL;
}
static node_error*
strm_set_exc(strm_stream* strm, int type, strm_value arg)
{
nod... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/math.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.309323 | #include <math.h>
#include "strm.h"
static int
math_sqrt(strm_stream* strm, int argc, strm_value* args, strm_value* ret)
{
double f;
strm_get_args(strm, argc, args, "f", &f);
*ret = strm_float_value(sqrt(f));
return STRM_OK;
}
static int
math_sin(strm_stream* strm, int argc, strm_value* args, strm_value* ret... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/iter.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.311917 | #include "strm.h"
#include "khash.h"
struct seq_data {
double n;
double end;
double inc;
};
static int
gen_seq(strm_stream* strm, strm_value data)
{
struct seq_data* d = strm->data;
if (d->end > 0 && d->n > d->end) {
strm_stream_close(strm);
return STRM_OK;
}
strm_emit(strm, strm_float_value(d-... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/main.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.324517 | #include "strm.h"
#include "node.h"
#include <stdio.h>
static void
fprint_str(node_string str, FILE *f)
{
fprintf(f, "%.*s", (int)str->len, str->buf);
}
static void
print_str(node_string name)
{
fprint_str(name, stdout);
fputs("\n", stdout);
}
static void
print_id(const char* pre, node_string name)
{
fputs(p... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/kvs.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.328760 | #include "strm.h"
#include "khash.h"
#include <pthread.h>
KHASH_INIT(kvs, strm_string, strm_value, 1, kh_int64_hash_func, kh_int64_hash_equal);
KHASH_INIT(txn, strm_string, strm_value, 1, kh_int64_hash_func, kh_int64_hash_equal);
typedef struct strm_kvs {
STRM_AUX_HEADER;
khash_t(kvs) *kv;
uint64_t serial;
pt... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/node.h | null | null | null | null | null | null | C | 2026-05-04T18:26:59.460260 | #ifndef STRM_NODE_H
#define STRM_NODE_H
typedef struct node_string {
strm_int len;
char buf[0];
} *node_string;
typedef struct node_error {
int type;
strm_value arg;
const char* fname;
int lineno;
} node_error;
typedef struct parser_state {
int nerr;
void *lval;
const char *fname;
int lineno;
i... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/ns.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.463860 | #include "strm.h"
#include "khash.h"
KHASH_MAP_INIT_INT64(ns, strm_state*);
static khash_t(ns) *nstbl;
static strm_state szero = {0};
strm_string
strm_ns_name(strm_state* state)
{
khiter_t k;
if (!nstbl) return strm_str_null;
for (k = kh_begin(nstbl); k != kh_end(nstbl); ++k) {
if (kh_exist(nstbl, k)) {
... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/ncpu.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.494189 | #ifdef _WIN32
/* It really works? */
#ifdef WIN_KERNEL_BUILD
#include <wdm.h>
int
cpu_count()
{
return (int)KeQueryActiveProcessorCount(NULL);
}
#else
#include <windows.h>
int
cpu_count()
{
SYSTEM_INFO si;
GetNativeSystemInfo( &si );
return (int)si.dwNumberOfProcessors;
}
#endif /* WIN_KERNEL_BUILD */
... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/queue.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.926405 | #include "queue.h"
#include <memory.h>
#include <stdio.h>
#include <stdlib.h>
struct strm_queue_node {
struct strm_queue_node *next;
void *n;
};
#ifdef NO_LOCKFREE_QUEUE
#include <pthread.h>
struct strm_queue {
struct strm_queue_node* head;
struct strm_queue_node* tail;
pthread_mutex_t mutex;
};
struct s... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/pollfd.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.930867 | #ifndef __linux__
#include "pollfd.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <memory.h>
#include <unistd.h>
#if defined(__APPLE__) || defined(__FreeBSD__)
#include <sys/types.h>
#include <sys/event.h>
#include <sys/time.h>
int
epoll_create(int size)
{
return kqueue();
}
int
epoll_ctl(... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/pollfd.h | null | null | null | null | null | null | C | 2026-05-04T18:26:59.949087 | #ifdef __linux__
# include <sys/epoll.h>
#else
#include <stdint.h>
/* for FD_SETSIZE */
#ifdef _WIN32
# include <ws2tcpip.h>
#else
# include <sys/select.h>
#endif
#define EPOLL_CTL_ADD (1)
#define EPOLL_CTL_DEL (2)
#define EPOLL_CTL_MOD (3)
#define EPOLLIN (0x001)
#define EPOLLOUT (0x004)
#define EPOLLERR (0x008)
#... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/number.c | null | null | null | null | null | null | C | 2026-05-04T18:26:59.995358 | #include "strm.h"
#include <math.h>
static int
num_plus(strm_stream* strm, int argc, strm_value* args, strm_value* ret)
{
strm_value x, y;
strm_get_args(strm, argc, args, "NN", &x, &y);
if (strm_int_p(x) && strm_int_p(y)) {
*ret = strm_int_value(strm_value_int(x)+strm_value_int(y));
return STRM_OK;
}
... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/node.c | null | null | null | null | null | null | C | 2026-05-04T18:27:00.025707 | #include "strm.h"
#include "node.h"
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#define YYDEBUG 1
#include "y.tab.h"
#include "lex.yy.h"
/* old bison does not have yyparse prototype in y.tab.h */
int yyparse(parser_state*);
#define VALUES_NEW(type1, type2, blk) \
type1* v = malloc(sizeof(type1));... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/queue.h | null | null | null | null | null | null | C | 2026-05-04T18:27:00.061932 | /* copied and modified https://github.com/supermartian/lockfree-queue
*
* Copyright (C) 2014 Yuzhong Wen<supermartian@gmail.com>
*
* Distributed under terms of the MIT license.
*/
#ifndef STRM_QUEUE_H
#define STRM_QUEUE_H
/*
* Here we implement a lock-free queue for buffering the
* packets that come out from m... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/random.c | null | null | null | null | null | null | C | 2026-05-04T18:27:00.108362 | #include "strm.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <fcntl.h>
#include <math.h>
static void
xorshift128init(uint32_t seed[4])
{
struct timeval tv;
uint32_t y;
int i;
#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__)
int fd = open("/dev/urandom",
# ... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/signal.c | null | null | null | null | null | null | C | 2026-05-04T18:27:00.139163 | #include <signal.h>
#include "strm.h"
typedef void (*sighandler_t)(int);
struct sig_list {
int sig;
strm_sighandler_t func;
void* arg;
struct sig_list* next;
};
struct sig_list* sig_list;
static void
handler(int sig)
{
struct sig_list* list;
for (list=sig_list; list; list=list->next) {
if (list->sig... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/socket.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.130511 | #ifndef _WIN32
# include <sys/fcntl.h>
# include <sys/types.h>
# include <sys/socket.h>
# include <netinet/in.h>
# include <netdb.h>
# include <stdio.h>
# define closesocket(fd) close(fd)
#else
# include <ws2tcpip.h>
# include <mswsock.h>
# include <fcntl.h>
#endif
#include "strm.h"
struct socket_data {
int sock;
}... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/stat.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.131215 | #include "strm.h"
#include <math.h>
struct sum_data {
double sum;
double c;
strm_int num;
strm_value func;
};
static int
iter_sum(strm_stream* strm, strm_value data)
{
struct sum_data* d = strm->data;
double x, t;
if (!strm_number_p(data)) {
return STRM_NG;
}
x = strm_value_float(data);
t = d... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/sort.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.132529 | #define _GNU_SOURCE
#include "strm.h"
#include <stdlib.h>
#ifdef NO_QSORT_R
/* qsort_r() implementation taken from github.com/stevengj/nlopt */
/* MIT license */
/* swap size bytes between a_ and b_ */
static void
swap(void *a_, void *b_, size_t size)
{
if (a_ == b_) return;
{
size_t i, nlong = size / sizeof(... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/value.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.315972 | #include <ctype.h>
#include <math.h>
#include "strm.h"
#include <assert.h>
strm_value
strm_ptr_value(void* p)
{
return STRM_TAG_PTR | ((strm_value)(intptr_t)p & STRM_VAL_MASK);
}
strm_value
strm_cfunc_value(strm_cfunc f)
{
return STRM_TAG_CFUNC | ((strm_value)(intptr_t)f & STRM_VAL_MASK);
}
strm_value
strm_bool_... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/strptime.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.317202 | /*
* Copyright (c) 1994 Powerdog Industries. All rights reserved.
*
* Redistribution and use in source and binary forms, without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of condition... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/string.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.318077 | #include "strm.h"
#include "khash.h"
#include <pthread.h>
#if defined(NO_READONLY_DATA_CHECK) || defined(_WIN32) || defined(__CYGWIN__)
static inline int
readonly_data_p(const char* s)
{
return 0;
}
#elif defined(__APPLE__) && defined(__MACH__)
#include <mach-o/getsect.h>
static inline int
readonly_data_p(const ... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/strm.h | null | null | null | null | null | null | C | 2026-05-04T18:27:01.347930 | #ifndef STRM_H
#define STRM_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdint.h>
#include <assert.h>
#ifndef FALSE
# define FALSE 0
#elif FALSE
# error FALSE must be false
#endif
#ifndef TRUE
# define TRUE 1
#elif !TRUE
# error TRUE must be true
#endif
#define STRM_OK 0... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/time.c | null | null | null | null | null | null | C | 2026-05-04T18:27:01.382527 | #define _XOPEN_SOURCE 700
#include "strm.h"
#include <time.h>
#ifndef _WIN32
#include <sys/time.h>
#endif
#include <math.h>
#include <string.h>
#ifdef _WIN32
char* strptime(const char *buf, char *fmt, struct tm *tm);
#endif
#ifndef timeradd
# define timeradd(a, b, res) \
... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/latch.c | null | null | null | null | null | null | C | 2026-05-04T18:27:05.401210 | #include "strm.h"
#include "queue.h"
const char* strm_p(strm_value val);
struct recv_data {
strm_stream* strm;
strm_callback func;
};
struct latch_data {
struct strm_queue* dq; /* data queue */
struct strm_queue* rq; /* receiver queue */
};
int
strm_latch_finish_p(strm_stream* latch)
{
struc... |
matz/streem | https://github.com/matz/streem | null | null | null | null | 4,598 | null | null | mit | null | null | null | null | null | null | null | src/khash.h | null | null | null | null | null | null | C | 2026-05-04T18:27:09.324241 | /* The MIT License
Copyright (c) 2008, 2009, 2011 by Attractive Chaos <attractor@live.co.uk>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cmFunc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.768953 | /**************************************************************************//**
* @file core_cmFunc.h
* @brief CMSIS Cortex-M Core Function Access Header File
* @version V3.01
* @date 06. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (ARM) ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.c | null | null | null | null | null | null | C | 2026-05-04T18:27:11.785457 | /**
******************************************************************************
* @file system_stm32f10x.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Source File.
*
* 1. This file provides two functi... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cm4_simd.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.786719 | /**************************************************************************//**
* @file core_cm4_simd.h
* @brief CMSIS Cortex-M4 SIMD Header File
* @version V3.01
* @date 06. March 2012
*
* @note
* Copyright (C) 2010-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (ARM) is supplying ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_sc000.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.805181 | /**************************************************************************//**
* @file core_sc000.h
* @brief CMSIS SC000 Core Peripheral Access Layer Header File
* @version V3.01
* @date 22. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (A... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cm0plus.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.807529 | /**************************************************************************//**
* @file core_cm0plus.h
* @brief CMSIS Cortex-M0+ Core Peripheral Access Layer Header File
* @version V3.01
* @date 22. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Lim... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cm3.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.826889 | /**************************************************************************//**
* @file core_cm3.h
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File
* @version V3.01
* @date 22. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/arm_common_tables.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.830606 | /* ----------------------------------------------------------------------
* Copyright (C) 2010 ARM Limited. All rights reserved.
*
* $Date: 11. November 2010
* $Revision: V1.0.2
*
* Project: CMSIS DSP Library
* Title: arm_common_tables.h
*
* Description: This file has extern declaration for ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cm0.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.832048 | /**************************************************************************//**
* @file core_cm0.h
* @brief CMSIS Cortex-M0 Core Peripheral Access Layer Header File
* @version V3.01
* @date 13. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_cmInstr.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.896945 | /**************************************************************************//**
* @file core_cmInstr.h
* @brief CMSIS Cortex-M Core Instruction Access Header File
* @version V3.01
* @date 06. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (A... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h | null | null | null | null | null | null | C | 2026-05-04T18:27:11.938847 | /**
******************************************************************************
* @file system_stm32f10x.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
****************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_EWARM/Include/core_sc300.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.430149 | /**************************************************************************//**
* @file core_sc300.h
* @brief CMSIS SC300 Core Peripheral Access Layer Header File
* @version V3.01
* @date 22. March 2012
*
* @note
* Copyright (C) 2009-2012 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (A... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_RVMDK/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.c | null | null | null | null | null | null | C | 2026-05-04T18:27:12.459955 | /**
******************************************************************************
* @file system_stm32f10x.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Source File.
*
* 1. This file provides two functi... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_adc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.462260 | /**
******************************************************************************
* @file stm32f10x_adc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the ADC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_RVMDK/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.482550 | /**
******************************************************************************
* @file system_stm32f10x.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
****************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/misc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.484515 | /**
******************************************************************************
* @file misc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the miscellaneous
* firmware library functions (add-on to ... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_bkp.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.487836 | /**
******************************************************************************
* @file stm32f10x_bkp.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the BKP firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_RVMDK/CM3/CoreSupport/core_cm3.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.530079 | /**************************************************************************//**
* @file core_cm3.h
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (AR... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_can.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.543395 | /**
******************************************************************************
* @file stm32f10x_can.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CAN firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/CMSIS_RVMDK/CM3/CoreSupport/core_cm3.c | null | null | null | null | null | null | C | 2026-05-04T18:27:12.561020 | /**************************************************************************//**
* @file core_cm3.c
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Source File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (AR... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_cec.h | null | null | null | null | null | null | C | 2026-05-04T18:27:12.581073 | /**
******************************************************************************
* @file stm32f10x_cec.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CEC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dbgmcu.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.072537 | /**
******************************************************************************
* @file stm32f10x_dbgmcu.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DBGMCU
* firmware library.
************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_crc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.115552 | /**
******************************************************************************
* @file stm32f10x_crc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CRC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_exti.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.129470 | /**
******************************************************************************
* @file stm32f10x_exti.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the EXTI firmware
* library.
*****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dma.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.130556 | /**
******************************************************************************
* @file stm32f10x_dma.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DMA firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_flash.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.153311 | /**
******************************************************************************
* @file stm32f10x_flash.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the FLASH
* firmware library.
**************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_i2c.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.191378 | /**
******************************************************************************
* @file stm32f10x_i2c.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the I2C firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_dac.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.224855 | /**
******************************************************************************
* @file stm32f10x_dac.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DAC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_iwdg.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.242582 | /**
******************************************************************************
* @file stm32f10x_iwdg.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the IWDG
* firmware library.
****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_fsmc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.261320 | /**
******************************************************************************
* @file stm32f10x_fsmc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the FSMC firmware
* library.
****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_gpio.h | null | null | null | null | null | null | C | 2026-05-04T18:27:13.297806 | /**
******************************************************************************
* @file stm32f10x_gpio.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the GPIO
* firmware library.
****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rcc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.019570 | /**
******************************************************************************
* @file stm32f10x_rcc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the RCC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_sdio.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.060820 | /**
******************************************************************************
* @file stm32f10x_sdio.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the SDIO firmware
* library.
*****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_spi.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.131238 | /**
******************************************************************************
* @file stm32f10x_spi.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the SPI firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_tim.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.150923 | /**
******************************************************************************
* @file stm32f10x_tim.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the TIM firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_pwr.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.175032 | /**
******************************************************************************
* @file stm32f10x_pwr.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the PWR firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_wwdg.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.185565 | /**
******************************************************************************
* @file stm32f10x_wwdg.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the WWDG firmware
* library.
*****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_rtc.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.529217 | /**
******************************************************************************
* @file stm32f10x_rtc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the RTC firmware
* library.
******************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/inc/stm32f10x_usart.h | null | null | null | null | null | null | C | 2026-05-04T18:27:14.910259 | /**
******************************************************************************
* @file stm32f10x_usart.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the USART
* firmware library.
**************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/misc.c | null | null | null | null | null | null | C | 2026-05-04T18:27:14.934243 | /**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the miscellaneous firmware functions (add-on
* to CMSIS functions).
*****************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.041456 | /**
******************************************************************************
* @file stm32f10x_dbgmcu.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DBGMCU firmware functions.
*****************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.086420 | /**
******************************************************************************
* @file stm32f10x_dac.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DAC firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.214935 | /**
******************************************************************************
* @file stm32f10x_adc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the ADC firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.271418 | /**
******************************************************************************
* @file stm32f10x_dma.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DMA firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.610780 | /**
******************************************************************************
* @file stm32f10x_exti.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the EXTI firmware functions.
*********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.636733 | /**
******************************************************************************
* @file stm32f10x_bkp.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the BKP firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.712848 | /**
******************************************************************************
* @file stm32f10x_fsmc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the FSMC firmware functions.
*********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.c | null | null | null | null | null | null | C | 2026-05-04T18:27:15.883720 | /**
******************************************************************************
* @file stm32f10x_flash.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the FLASH firmware functions.
*******************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.c | null | null | null | null | null | null | C | 2026-05-04T18:27:20.136646 | /**
******************************************************************************
* @file stm32f10x_can.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CAN firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.c | null | null | null | null | null | null | C | 2026-05-04T18:27:20.688353 | /**
******************************************************************************
* @file stm32f10x_crc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CRC firmware functions.
***********************************************************... |
armink/EasyLogger | https://github.com/armink/EasyLogger | null | null | null | null | 4,593 | null | null | mit | null | null | null | null | null | null | null | demo/non_os/stm32f10x/Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.c | null | null | null | null | null | null | C | 2026-05-04T18:27:20.688964 | /**
******************************************************************************
* @file stm32f10x_cec.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CEC firmware functions.
***********************************************************... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/reqrep/reqrep.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.355675 | //
// Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2021 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/stream/stream.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.361156 | // Copyright 2020 Hugo Lindström <hugolm84@gmail.com>
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
/... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/pubsub_forwarder/pubsub_forwarder.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.362458 | //
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
//
// Forwarder example based on https://github.com/C... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/async/server.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.364497 | // Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitoar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may a... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/http_client/http_client.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.381809 | //
// Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/stream/platform/posix/server.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.383276 | // Copyright 2020 Hugo Lindström <hugolm84@gmail.com>
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
#inc... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/async/client.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.389821 | // Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitoar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may a... |
nanomsg/nng | https://github.com/nanomsg/nng | null | null | null | null | 4,576 | null | null | mit | null | null | null | null | null | null | null | demo/raw/raw.c | null | null | null | null | null | null | C | 2026-05-04T18:27:23.390852 | // Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
// Copyright 2018 Capitar IT Group BV <info@capitoar.com>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.