/**
******************************************************************************
* @file stm32f479xx.h
* @author MCD Application Team
* @brief CMSIS STM32F479xx Device Peripheral Access Layer Header File.
*
* This file contains:
* - Data structures and the address mapping for all peripherals
* - peripherals registers declarations and bits definition
* - Macros to access peripheral’s registers hardware
*
******************************************************************************
* @attention
*
* <h2><center>© Copyright (c) 2017 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under BSD 3-Clause license,
* the "License"; You may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
* opensource.org/licenses/BSD-3-Clause
*
******************************************************************************
*/
/** @addtogroup CMSIS_Device
* @{
*/
/** @addtogroup stm32f479xx
* @{
*/
#ifndef __STM32F479xx_H
#define __STM32F479xx_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/** @addtogroup Configuration_section_for_CMSIS
* @{
*/
/**
* @brief Configuration of the Cortex-M4 Processor and Core Peripherals
*/
#define __CM4_REV 0x0001U /*!< Core revision r0p1 */
#define __MPU_PRESENT 1U /*!< STM32F4XX provides an MPU */
#define __NVIC_PRIO_BITS 4U /*!< STM32F4XX uses 4 Bits for the Priority Levels */
#define __Vendor_SysTickConfig 0U /*!< Set to 1 if different SysTick Config is used */
#define __FPU_PRESENT 1U /*!< FPU present */
/**
* @}
*/
/** @addtogroup Peripheral_interrupt_number_definition
* @{
*/
/**
* @brief STM32F4XX Interrupt Number Definition, according to the selected device
* in @ref Library_configuration_section
*/
typedef enum
{
/****** Cortex-M4 Processor Exceptions Numbers ****************************************************************/
NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
MemoryManagement_IRQn = -12, /*!< 4 Cortex-M4 Memory Management Interrupt */
BusFault_IRQn = -11, /*!< 5 Cortex-M4 Bus Fault Interrupt */
UsageFault_IRQn = -10, /*!< 6 Cortex-M4 Usage Fault Interrupt */
SVCall_IRQn = -5, /*!< 11 Cortex-M4 SV Call Interrupt */
DebugMonitor_IRQn = -4, /*!< 12 Cortex-M4 Debug Monitor Interrupt */
PendSV_IRQn = -2, /*!< 14 Cortex-M4 Pend SV Interrupt */
SysTick_IRQn = -1, /*!< 15 Cortex-M4 System Tick Interrupt */
/****** STM32 specific Interrupt Numbers **********************************************************************/
WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
TAMP_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts through the EXTI line */
RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI line */
FLASH_IRQn = 4, /*!< FLASH global Interrupt */
RCC_IRQn = 5, /*!< RCC global Interrupt */
EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
EXTI2_IRQn = 8, /*!< EXTI Line2 Interrupt */
EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
DMA1_Stream0_IRQn = 11, /*!< DMA1 Stream 0 global Interrupt */
DMA1_Stream1_IRQn = 12, /*!< DMA1 Stream 1 global Interrupt */
DMA1_Stream2_IRQn = 13, /*!< DMA1 Stream 2 global Interrupt */
DMA1_Stream3_IRQn = 14, /*!< DMA1 Stream 3 global Interrupt */
DMA1_Stream4_IRQn = 15, /*!< DMA1 Stream 4 global Interrupt */
DMA1_Stream5_IRQn = 16, /*!< DMA1 Stream 5 global Interrupt */
DMA1_Stream6_IRQn = 17, /*!< DMA1 Stream 6 global Interrupt */
ADC_IRQn = 18, /*!< ADC1, ADC2 and ADC3 global Interrupts */
CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupt */
CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupt */
CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
TIM1_BRK_TIM9_IRQn = 24, /*!< TIM1 Break interrupt and TIM9 global interrupt */
TIM1_UP_TIM10_IRQn = 25, /*!< TIM1 Update Interrupt and TIM10 global interrupt */
TIM1_TRG_COM_TIM11_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */
TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
USART1_IRQn = 37, /*!< USART1 global Interrupt */
USART2_IRQn = 38, /*!< USART2 global Interrupt */
USART3_IRQn = 39, /*!< USART3 global Interrupt */
EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Lin
没有合适的资源?快使用搜索试试~ 我知道了~
K210开发板实现人脸识别和口罩识别系统源码及完整资料.zip
共2000个文件
h:1186个
c:791个
htm:14个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 2 下载量 116 浏览量
2022-12-02
14:53:07
上传
评论 1
收藏 214.78MB ZIP 举报
温馨提示
K210开发板实现人脸识别和口罩识别系统源码及完整资料.zip 系统实现原理 图像采集:通过摄像头模块实时捕获人脸图像。 图像处理:利用K210芯片内置的NPU对捕获的图像进行预处理,如灰度化、降噪等,以提高后续识别的准确性。 人脸识别与口罩识别:通过加载预训练的人脸识别模型和口罩检测模型,对处理后的图像进行人脸检测和口罩检测。如果检测到人脸,则进一步判断其是否佩戴口罩。 结果输出:将识别结果通过LCD显示屏、串口通信等方式输出,供后续应用使用。 【资源说明】 1.项目代码功能经验证ok,确保稳定可靠运行。欢迎下载使用!在使用过程中,如有问题或建议,请及时私信沟通。 2.主要针对各个计算机相关专业,包括计科、信息安全、数据科学与大数据技术、人工智能、通信、物联网等领域的在校学生、专业教师或企业员工使用。 【特别强调】 1、csdn上资源保证是完整最新,会不定期更新优化; 2、如果您不是用自己账号在csdn官方下载,而通过第三方代下,博主不对您下载的资源作任何保证,且不提供任何形式的技术支持和答疑!!!
资源推荐
资源详情
资源评论
收起资源包目录
K210开发板实现人脸识别和口罩识别系统源码及完整资料.zip (2000个子文件)
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_tim.c 238KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_i2c.c 234KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_fmpi2c.c 230KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_cryp.c 228KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_rcc_ex.c 152KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_dfsdm.c 150KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_uart.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_hash.c 129KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_spi.c 121KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_sd.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_fmpsmbus.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_usart.c 99KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_qspi.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
stm32f4xx_hal_smbus.c 93KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
- 2301_765366872023-12-20实在是宝藏资源、宝藏分享者!感谢大佬~onnx2024-08-15嗯嗯,加油,欢迎交流~~
- CPLAAF_CSH2023-05-11资源很赞,希望多一些这类资源。onnx2023-12-13感谢您对该项目资源的认可和支持,想学胡写
onnx
- 粉丝: 9971
- 资源: 5626
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功