Skip to content

Instantly share code, notes, and snippets.

@davidthings
davidthings / uart_async_rxtasks_main.c
Last active November 24, 2020 19:36
Test Code Demonstrating UART Error with SPIRAM Buffers
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_log.h"
#include "driver/uart.h"
#include "string.h"
#include "driver/gpio.h"
#include <esp_pthread.h>
@davidthings
davidthings / dsl_tb.v
Last active November 23, 2019 11:55
Statemachine-based Domain Specific Language in Verilog Speculation
/*
DSL Experiment
What if some tiny piece of programability is needed in a design?
Using even the smallest SoftCPU takes a large amount of resources.
Is there something in between a SoftCPU and doing everything in Verilog?
@davidthings
davidthings / test_put_find_multiple.js
Created May 3, 2011 03:46
Test Case for Multiple Indicies on Alfred
var assert = require( "assert" );
var Alfred = require('../../../../alfred/');
var Base;
var Id;
var Name;
var Age;
var Sex;