05 2018 档案

摘要:Base64编码解码原理详解 1. Base64字符的组成部分 2. 10个数字,26个大写字母,26个小写字母,1个+,一个 / 刚好64个字符 3. Base64是将每3个字符转化为4个字符,即(3*8bit=4*6bit),如果文本结尾不足3个字符,对转化为6为字符后,后面剩余的二进制位可能是 阅读全文
posted @ 2018-05-24 09:26 猴子上树 阅读(288) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include"freertos/FreeRTOS.h"#include"freertos/task.h"#include"driver/gpio.h"#include"sdkconfig.h" #define BLINK_GPIO 2 void blink_ta 阅读全文
posted @ 2018-05-02 22:45 猴子上树 阅读(551) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include"freertos/FreeRtos.h"#include"freertos/task.h"#include"esp_system.h" //esp32 系统操作库#include"esp_spi_flash.h" //闪存读写库 /*typedef 阅读全文
posted @ 2018-05-01 17:17 猴子上树 阅读(2854) 评论(0) 推荐(0)