资源简介
在ESP32下,使用mbedtls库,测试sha1和sha256/224 aes_ecb、aes_cbc的简单DEMO
代码片段和文件信息
/* blink Example
This example code is in the Public Domain (or CC0 licensed at your option.)
Unless required by applicable law or agreed to in writing this
software is distributed on an “AS IS“ BASIS WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND either express or implied.
*/
#include
#include “freertos/FreeRTOS.h“
#include “freertos/task.h“
#include “driver/gpio.h“
#include “sdkconfig.h“
/* Can run ‘make menuconfig‘ to choose the GPIO to blink
or you can edit the following line and set a number here.
*/
#define blink_GPIO CONFIG_blink_GPIO
void blink_task(void *pvParameter)
{
/* Configure the IOMUX register for pad blink_GPIO (some pads are
muxed to GPIO on reset already but some default to other
functions and need to be switched to GPIO. Consult the
Technical Reference for a list of pads and their default
functions.)
*/
gpio_pad_select_gpio(blink_GPIO);
/* Set the GPIO as a push/pull output */
gpio_set_direction(blink_GPIO GPIO_MODE_OUTPUT);
while(1) {
/* blink off (output low) */
gpio_set_level(blink_GPIO 0);
vTaskDelay(1000 / portTICK_PERIOD_MS);
/* blink on (output high) */
gpio_set_level(blink_GPIO 1);
vTaskDelay(1000 / portTICK_PERIOD_MS);
}
}
void app_main()
{
xTaskCreate(&blink_task “blink_task“ configMINIMAL_STACK_SIZE NULL 5 NULL);
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 202 2019-08-03 10:56 README.md
目录 0 2019-08-06 10:47 bl
文件 234 2019-08-03 10:56 bl
文件 177 2019-08-03 10:56 bl
文件 157 2019-08-03 10:56 bl
目录 0 2019-08-06 10:47 bl
文件 87 2019-08-03 10:56 bl
文件 313 2019-08-03 10:56 bl
文件 1415 2019-08-03 10:56 bl
文件 145 2019-08-03 10:56 bl
文件 3 2019-08-03 10:56 bl
目录 0 2019-08-06 10:49 hello_world\
文件 235 2019-08-03 10:56 hello_world\CMakeLists.txt
文件 183 2019-08-03 10:56 hello_world\Makefile
文件 170 2019-08-03 10:56 hello_world\README.md
目录 0 2019-08-06 11:16 hello_world\build\
目录 0 2019-08-06 10:49 hello_world\build\app_trace\
文件 17374 2019-08-06 10:49 hello_world\build\app_trace\app_trace.d
文件 2016 2019-08-06 10:49 hello_world\build\app_trace\app_trace.o
文件 14923 2019-08-06 10:49 hello_world\build\app_trace\app_trace_util.d
文件 16148 2019-08-06 10:49 hello_world\build\app_trace\app_trace_util.o
文件 289 2019-08-06 10:49 hello_world\build\app_trace\component_project_vars.mk
目录 0 2019-08-06 10:49 hello_world\build\app_trace\gcov\
文件 15871 2019-08-06 10:49 hello_world\build\app_trace\gcov\gcov_rtio.d
文件 2024 2019-08-06 10:49 hello_world\build\app_trace\gcov\gcov_rtio.o
文件 14743 2019-08-06 10:49 hello_world\build\app_trace\host_file_io.d
文件 2020 2019-08-06 10:49 hello_world\build\app_trace\host_file_io.o
文件 22804 2019-08-06 10:49 hello_world\build\app_trace\libapp_trace.a
目录 0 2019-08-06 10:49 hello_world\build\app_update\
文件 294 2019-08-06 10:49 hello_world\build\app_update\component_project_vars.mk
文件 18286 2019-08-06 10:49 hello_world\build\app_update\esp_ota_ops.d
............此处省略1968个文件信息
相关资源
- ShareMose 4.0 windows和mac破解版集合
- Wireshark网络分析就这么简单解压密码
- 英文原版-Fundamentals of Computer Graphics
- Sharepoint 2016 server 必备安装包
- Wireshark数据包分析实战_PDF电子书 带书
- cef_binary64位
- 计算机网络-自顶向下方法第七版配套
- Unity+Shader入门精要完整版
- 我国乡镇边界shape.zip
- HandDrawnShaderPack1.2
- Real-Time Shadows实时阴影技术
- 虚拟机LEDE固件openwrt-koolshare-mod-v2.31
- CefSharp的一个简单
- 上海地区矢量图
- CefSharp Browser Chromium内核 WebBrowser 控件
- Wireshark Network Analysis(2nd) 无水印p
- 中国矢量地图shape文件
- flashas3拼图游戏源码
- 《Wireshark数据包分析实战(笔记)》
- shp矢量数据(3):市界线+市级城市点
- Unity着色器和屏幕特效开发秘籍 中文
- SHA-3的算法
- CefSharp模仿浏览器Tab分页,刷新,删除
- Wireshark-win32-1.10.0
- Amplify Shader Editor1.6.4
- 支持 H.265视频重新编码工具ShanaEncod
- OpenGL 4.0 Shading Language Cookbook及完整源
- wireshark-2.0.3-64位版本
- Wireshark-win64-2.2.5
- SHA-3算法之Keccak
评论
共有 条评论