Skip to content

Instantly share code, notes, and snippets.

View carlosdelfino's full-sized avatar
💭
Estudando Salesforce e seu ecosistema

Carlos Delfino carlosdelfino

💭
Estudando Salesforce e seu ecosistema
View GitHub Profile
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
@carlosdelfino
carlosdelfino / image_to_hex.py
Last active January 27, 2021 19:08
Um simples conversor de imagens para um txt de hexadecimal
from PIL import Image
import sys
import os
n = len(sys.argv)
print(n)
if (n < 2) or (n > 3):
print("Use: python convert.py imagefile.ext memfile.hex .\n")
exit(1)
@carlosdelfino
carlosdelfino / cloudSettings
Last active July 26, 2020 12:45
Configurações para Espaço de Trabalho no VSCode para o projeto IOVCC
{"lastUpload":"2020-07-26T12:45:38.456Z","extensionVersion":"v3.4.3"}
@carlosdelfino
carlosdelfino / CORDIC_Demo.asm
Last active July 22, 2020 13:53
Estudos de otimização trigonometria em C e ASM em especial Cortex-M e AVR
;CORDIC Degrees to SIN COS (As Used On Youtube http://www.youtube.com/watch?v=Ze4UnE8R4FM)
;20x2 OLED display
;Craig Webster (IXIBA)
;Melboune Australia
;Updated 18/2/2014
;Found this usefull?
;Bitcoin: 1LqDCrj8QAUjACnjRNEw8vq3T9p2R5k5RW
@carlosdelfino
carlosdelfino / Goertzel.c
Created July 22, 2020 02:44
Estudos sobre Goertzel
/* Goertzel Algorithm
* http://cms.edn.com/uploads/SourceCode/09banks.txt
*/
#define PI 3.141592653589793
#include <stdio.h>
#include <math.h>
#define FLOATING float
@carlosdelfino
carlosdelfino / QuartusVerilatorError.md
Created July 18, 2020 20:25 — forked from jbush001/QuartusVerilatorError.md
Things that Quartus flags as an error that Verilator does not

(Tested with Quartus 16 and Verilator 3.912)

  • Assign a value to an enumerated type without specifying width:

    typedef enum logic[3:0] {
       FOO = 0,
       BAR = 1
    } my_enum_t;
@carlosdelfino
carlosdelfino / msys2.md
Created July 15, 2020 22:57 — forked from Bluexin/msys2.md
Setting up qtcreator with msys2 on windub
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "parameters.h"
#include "lzd_lib.h"
static uint_fast8_t dicType = DIC_NUM;
static DicEntryT **dic;
/*********************************************************************
* ALGORITMOS DSP FORUM CdH *
* *
* Arquivo: Average_Filter.h *
* Descrição: Arquivo header de Average_Filter.C *
*********************************************************************/
/********************************************************************
--Conteúdo:
@carlosdelfino
carlosdelfino / forma_1.sh
Created April 12, 2020 15:43
Formas de manter GH-Pages com Git-SubTree
## Abaixo os comandos para manter o Github Pages atualizado considerando que está usando o GitBook
git checkout master && git pull # procure manter o branch master sempre atualizado
git subtree split --prefix _books -b gh-pages # create a local gh-pages branch containing the splitted output folder
git push -f origin gh-pages:gh-pages # force the push of the gh-pages branch to the remote gh-pages branch at origin