- https://github.com/riverdi/riverdi-eve
- https://github.com/riverdi/riverdi-eve-arduino
- https://github.com/NewhavenDisplay/EVE2-TFT-Modules
- https://github.com/zerynth/lib-bridgetek-bt81x
- https://github.com/MatrixOrbital/EVE-School
- https://github.com/MatrixOrbital/EVE2-Library
- https://github.com/Cowfish-Studios/Cowfish_Sunflower_Shield_Arduino_Sketches
- https://github.com/RudolphRiedel/FT800-FT813
- https://github.com/hanseikai-kudo/FT8xx_Chapter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Test malloc and free performance over time for a specified allocation block size and total. */ | |
#include <iostream> | |
#include <chrono> | |
#include <thread> | |
#include <cstring> | |
#if 0 // test HeapCompact (1/2) | |
#ifdef _WIN32 | |
#include <Windows.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let nnmessage = require('nnmessage'); | |
let server = nnmessage.createServer(); | |
server.onConnected(function(connection) { | |
// called whe new client connects | |
connection.onMessage(....); | |
}); |