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
#include<SlaveSPIClass.h> | |
int SlaveSPI::size = 0; | |
SlaveSPI** SlaveSPI::SlaveSPIVector = NULL; | |
void setupIntr(spi_slave_transaction_t * trans) | |
{ | |
for(int i=0 ; i<SlaveSPI::size;i++) | |
{ | |
if(SlaveSPI::SlaveSPIVector[i]->match(trans)) | |
SlaveSPI::SlaveSPIVector[i]->setup_intr(trans); | |
} |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <inttypes.h> | |
#include "HardwareSerial.h" | |
HardwareSerial Serial(0); | |
HardwareSerial::HardwareSerial(int uart_nr) : _uart_nr(uart_nr), _uart(NULL) {} | |
void HardwareSerial::setInterrupt(void(*arg)() ) |
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
{ | |
"basics": { | |
"name": "Shy-El Cohen", | |
"label": "Algorithm Developer", | |
"image": "https://i.imgur.com/By8N2nK.jpg", | |
"email": "[email protected]", | |
"phone": "0544910932", | |
"summary": "**Autodidactic** electrical engineer with 6+ years of experience in algorithm development, with **full system responsibilities**. With diverse skillset including Digital Signal Processing, Mathematical programming, Cloud Computing, and Software Development. Looking forward to working on DSP and ML algorithms.", | |
"location": { | |
}, |