sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
PROJECT := $(notdir $(CURDIR)) | |
EXCECUTABLE = $(BUILDDIR)/$(PROJECT) | |
# Directories specification | |
SRCDIRS := src | |
INCDIRS := include | |
BUILDDIR := build | |
# @note: to add another source extension, add to herer AND make sure to | |
# write the " $(BUILDDIR)/%.o: %.ext " rule for this extention in order to work |
#ifndef _ESCAPE_CODE_H_ | |
#define _ESCAPE_CODE_H_ | |
#include <stdio.h> | |
#include "freertos/FreeRTOS.h" | |
#include "freertos/task.h" | |
#define ESC "\033" | |
#define ESC_CSI ESC "[" |
## Copyright 2017 Natanael Rabello ## | |
# Syscall codes | |
.eqv SOUT_INT 1 | |
.eqv SOUT_STR 4 | |
.eqv SIN_INT 5 | |
# Imprimi uma string | |
.macro print_str(%str) | |
.data |
# Set up notification options | |
notifications: | |
email: | |
recipients: | |
- [email protected] | |
- [email protected] | |
# change is when the repo status goes from pass to fail or vice versa | |
on_success: change | |
on_failure: always |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
#include <math.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include "driver/gpio.h" | |
#include "driver/i2c.h" | |
#include "driver/spi_master.h" | |
#include "esp_err.h" | |
#include "esp_log.h" |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "esp_system.h" | |
#include "esp_log.h" | |
#include "bt.h" | |
#include "bta_api.h" | |
#include "esp_gap_ble_api.h" | |
#include "esp_bt_main.h" |