Skip to content

Instantly share code, notes, and snippets.

View InusualZ's full-sized avatar

Wesley Moret InusualZ

  • 21:20 (UTC -04:00)
View GitHub Profile
@InusualZ
InusualZ / Packet.cpp
Last active January 7, 2018 22:59
Packet
#include "Packet.h"
Packet::Packet()
{
this->length = 1024;
this->buffer = (uint8_t*)malloc(1024);
this->position = 0;
}
@InusualZ
InusualZ / Scheduler.cpp
Last active January 7, 2018 22:59
Scheduler System
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* @author InusualZ
*
*
*/