enum gs_usb_breq {
GS_USB_BREQ_HOST_FORMAT = 0,
GS_USB_BREQ_BITTIMING,
GS_USB_BREQ_MODE,
GS_USB_BREQ_BERR,
GS_USB_BREQ_BT_CONST,
GS_USB_BREQ_DEVICE_CONFIG,
GS_USB_BREQ_TIMESTAMP,
This file contains hidden or 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
| int holdPin = 4; // defines GPIO 4 as the hold pin (will hold ESP-12F enable pin high untill we power down) | |
| #include <ESP8266WiFi.h> | |
| const char* ssid = "Wifi_name"; // Enter the SSID of your WiFi Network. | |
| const char* password = "Wifi_pass";// Enter the Password of your WiFi Network. | |
| char server[] = "mail.smtp2go.com"; // The SMTP Server | |
| WiFiClient espClient; | |
| void setup() |
This file contains hidden or 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 <string.h> | |
| #include <stdio.h> | |
| #include <hwcrypto/aes.h> | |
| /* | |
| For Encryption time: 1802.40us (9.09 MB/s) at 16kB blocks. | |
| */ | |
| static inline int32_t _getCycleCount(void) { | |
| int32_t ccount; |