563d11f8cd
修改文件头信息 修改ACM32F030 BSP的文件格式 新增BSP驱动中的lib文件 IAR和GCC支持备份 1. 修复不能包含HAL_EFLASH.h问题, 2. 消除GCC编译的几个警告 1. gcc启动文件重命名;2. 文件头信息修改; 3. 硬件timer支持修改 移动 .ignore_format.yml到bsp的目录下 修改目录成相对目录
25 lines
669 B
C
25 lines
669 B
C
#ifndef _HAL_DIV_H_
|
|
#define _HAL_DIV_H_
|
|
|
|
#include "ACM32Fxx_HAL.h"
|
|
|
|
/************************************************************************
|
|
* function : hardwareNN_Div_q32
|
|
* Description: Computes q = b div c and a = b mod c.
|
|
cDigits must be 1, and *c < 0xffffffff
|
|
* input : UINT32 *b -- input b databuffer
|
|
UINT32 *c -- input c databuffer
|
|
* output: UINT32 *q -- quotient of result
|
|
UINT32 *a -- remainder of result
|
|
|
|
* return: none
|
|
************************************************************************/
|
|
void HAL_DIV_Q32(UINT32 *q,UINT32 *a,UINT32 *b,UINT32 bDigits,UINT32 *c,UINT32 cDigits);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|