generated from hulk/gd32e23x_template
	Compare commits
	
		
			28 Commits
		
	
	
		
			444804efe4
			...
			feature_ri
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 8348652425 | |||
| c9e994f0c2 | |||
| 1b65f75da7 | |||
| 742ede30d4 | |||
| b3dea747d0 | |||
| 6c51f0203a | |||
| 1752e3824c | |||
| e1277c9c7a | |||
| 3ed6a69014 | |||
| 8eaf1f43bc | |||
| 1c7417371e | |||
| 6310977c99 | |||
| e8f0161e32 | |||
| 7a91986b9b | |||
| 61ddbcf2cd | |||
| 688866108c | |||
| fd2f72914d | |||
| db780ba529 | |||
| 2a0e0b40b6 | |||
| 6c37fecd28 | |||
| a9599bae5e | |||
| da22e0eff9 | |||
| 892c59c2d3 | |||
| b94a430ba2 | |||
| 8cd24132a6 | |||
| e2e17d870c | |||
| d359ab5320 | |||
| 0ebe9c5d16 | 
@@ -4,10 +4,12 @@ include(cmake/toolchain.cmake)
 | 
				
			|||||||
project(xlsw_3dp_LDC1612)
 | 
					project(xlsw_3dp_LDC1612)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set(VERSION_MAJOR 0)
 | 
					set(VERSION_MAJOR 0)
 | 
				
			||||||
set(VERSION_MINOR 2)
 | 
					set(VERSION_MINOR F)
 | 
				
			||||||
set(VERSION_PATCH 0)
 | 
					set(VERSION_PATCH 1)
 | 
				
			||||||
set(VERSION "V${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
 | 
					set(VERSION "V${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
 | 
				
			||||||
string(TIMESTAMP CURRENT_DATE "%Y-%m-%d")
 | 
					string(TIMESTAMP CURRENT_DATE "%Y-%m-%d")
 | 
				
			||||||
 | 
					set(IIC_TYPE "AutoDetectDriveCurrent")
 | 
				
			||||||
 | 
					#set(IIC_TYPE "HW-IIC")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enable_language(C)
 | 
					enable_language(C)
 | 
				
			||||||
enable_language(CXX)
 | 
					enable_language(CXX)
 | 
				
			||||||
@@ -30,6 +32,7 @@ set(TARGET_C_SRC
 | 
				
			|||||||
        ${CMAKE_SOURCE_DIR}/src/led.c
 | 
					        ${CMAKE_SOURCE_DIR}/src/led.c
 | 
				
			||||||
        ${CMAKE_SOURCE_DIR}/src/i2c.c
 | 
					        ${CMAKE_SOURCE_DIR}/src/i2c.c
 | 
				
			||||||
        ${CMAKE_SOURCE_DIR}/src/soft_i2c.c
 | 
					        ${CMAKE_SOURCE_DIR}/src/soft_i2c.c
 | 
				
			||||||
 | 
					        ${CMAKE_SOURCE_DIR}/src/fwdgt.c
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
add_executable(xlsw_3dp_LDC1612 ${TARGET_C_SRC})
 | 
					add_executable(xlsw_3dp_LDC1612 ${TARGET_C_SRC})
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										146
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										146
									
								
								README.md
									
									
									
									
									
								
							@@ -6,4 +6,148 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
## 电涡流传感器模块通信协议
 | 
					## 电涡流传感器模块通信协议
 | 
				
			||||||
 | 
					
 | 
				
			||||||
通信协议:[LDC1612通信协议]{./CommunicationProtocol.md}
 | 
					通信协议:[LDC1612通信协议](CommunicationProtocol.md)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## LDC1612寄存器配置
 | 
				
			||||||
 | 
					### **1. 软件复位 (RESET_DEV)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x1C
 | 
				
			||||||
 | 
					- **写入值**: 0x8000
 | 
				
			||||||
 | 
					- **字段解析**:
 | 
				
			||||||
 | 
					    - **Bit 15 (RESET_DEV)**: 写1触发硬件复位,完成后自动清零。
 | 
				
			||||||
 | 
					    - **Bits 14-0**: 保留位,必须写0。
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **2. 进入休眠模式 (CONFIG)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x1A
 | 
				
			||||||
 | 
					- **写入值**: 0x2801
 | 
				
			||||||
 | 
					- **字段解析**(按位分解):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  | Bit位 | 字段名                | 值   | 功能说明                  |
 | 
				
			||||||
 | 
					    |-------|-----------------------|-----|--------------------------|
 | 
				
			||||||
 | 
					  | 15-14 | ACTIVE_CHAN           | 00  | 未使用(休眠模式下无效)     |
 | 
				
			||||||
 | 
					  | 13    | SLEEP_MODE_EN         | 1   | 使能休眠模式               |
 | 
				
			||||||
 | 
					  | 12    | RP_OVERRIDE_EN        | 0   | 禁用Rp覆盖(默认)          |
 | 
				
			||||||
 | 
					  | 11    | SENSOR_ACTIVATE_SEL   | 0   | 全电流激活模式             |
 | 
				
			||||||
 | 
					  | 10    | AUTO_AMP_DIS          | 0   | 启用自动幅度校正           |
 | 
				
			||||||
 | 
					  | 9     | REF_CLK_SRC           | 0   | 使用内部时钟源             |
 | 
				
			||||||
 | 
					  | 8     | Reserved              | 0   | 保留位                    |
 | 
				
			||||||
 | 
					  | 7     | INTB_DIS              | 0   | 使能INTB中断              |
 | 
				
			||||||
 | 
					  | 6     | HIGH_CURRENT_DRV      | 0   | 禁用高电流驱动模式         |
 | 
				
			||||||
 | 
					  | 5-0   | Reserved              | 000001 | 保留位(默认值)          |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **3. 配置通道0时钟分频 (CLOCK_DIVIDERS_CH0)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x14
 | 
				
			||||||
 | 
					- **写入值**: 0x1002
 | 
				
			||||||
 | 
					- **字段解析**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  | 字段名             | 位域      | 值    | 功能说明                  |
 | 
				
			||||||
 | 
					    |--------------------|-----------|-------|--------------------------|
 | 
				
			||||||
 | 
					  | CH0_FIN_DIVIDER    | Bits 15-12 | 0x1   | 传感器分频系数=1(不分频) |
 | 
				
			||||||
 | 
					  | Reserved           | Bits 11-10 | 0x0   | 保留位                   |
 | 
				
			||||||
 | 
					  | CH0_FREF_DIVIDER   | Bits 9-0   | 0x002 | 参考分频系数=2,f_REF=40MHz/2=20MHz |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **4. 设置通道0转换时间 (RCOUNT_CH0)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x08
 | 
				
			||||||
 | 
					- **写入值**: 0x04D6 (十进制1238)
 | 
				
			||||||
 | 
					- **计算公式**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  \[
 | 
				
			||||||
 | 
					  t_{C0} = \frac{(0x04D6 \times 16)}{20\text{MHz}} = 991\mu s
 | 
				
			||||||
 | 
					  \]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **5. 设置通道0稳定时间 (SETTLECOUNT_CH0)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x10
 | 
				
			||||||
 | 
					- **写入值**: 0x000A (十进制10)
 | 
				
			||||||
 | 
					- **计算公式**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  \[
 | 
				
			||||||
 | 
					  t_{S0} = \frac{(0x000A \times 16)}{20\text{MHz}} = 8\mu s
 | 
				
			||||||
 | 
					  \]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **6. 配置通道0驱动电流 (DRIVE_CURRENT_CH0)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x1E
 | 
				
			||||||
 | 
					- **写入值**: 0x9000
 | 
				
			||||||
 | 
					- **字段解析**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  | 字段名             | 位域      | 值    | 功能说明                  |
 | 
				
			||||||
 | 
					    |--------------------|-----------|-------|--------------------------|
 | 
				
			||||||
 | 
					  | CH0_IDRIVE         | Bits 15-11 | 0x12  | 驱动电流值=18(对应Rp=6.6kΩ,查表9) |
 | 
				
			||||||
 | 
					  | CH0_INIT_IDRIVE    | Bits 10-6  | 0x00  | 初始电流值(未使用)        |
 | 
				
			||||||
 | 
					  | Reserved           | Bits 5-0   | 0x00  | 保留位                   |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **7. 多通道扫描配置 (MUX_CONFIG)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x1B
 | 
				
			||||||
 | 
					- **写入值**: 0x820C
 | 
				
			||||||
 | 
					- **字段解析**:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  | 字段名             | 位域      | 值    | 功能说明                  |
 | 
				
			||||||
 | 
					    |--------------------|-----------|-------|--------------------------|
 | 
				
			||||||
 | 
					  | AUTOSCAN_EN        | Bit 15    | 1     | 启用自动扫描模式           |
 | 
				
			||||||
 | 
					  | RR_SEQUENCE        | Bits 14-13 | 00   | 扫描顺序:Ch0→Ch1          |
 | 
				
			||||||
 | 
					  | Reserved           | Bits 12-3 | 0x020 | 保留位(默认值)           |
 | 
				
			||||||
 | 
					  | DEGLITCH           | Bits 2-0   | 0x4   | 去抖动滤波器带宽=3.3MHz    |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **8. 退出休眠并启动转换 (CONFIG)**
 | 
				
			||||||
 | 
					- **寄存器地址**: 0x1A
 | 
				
			||||||
 | 
					- **写入值**: 0x1601
 | 
				
			||||||
 | 
					- **字段解析**(关键位):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  | Bit位 | 字段名                | 值   | 功能说明                  |
 | 
				
			||||||
 | 
					    |-------|-----------------------|-----|--------------------------|
 | 
				
			||||||
 | 
					  | 13    | SLEEP_MODE_EN         | 0   | 退出休眠模式              |
 | 
				
			||||||
 | 
					  | 9     | REF_CLK_SRC           | 1   | 使用外部时钟(CLKIN=40MHz)|
 | 
				
			||||||
 | 
					  | 12    | RP_OVERRIDE_EN        | 1   | 启用Rp覆盖(固定驱动电流) |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **关键参数总结表**
 | 
				
			||||||
 | 
					| 寄存器名             | 地址  | 写入值 | 核心功能                     |
 | 
				
			||||||
 | 
					|----------------------|-------|--------|----------------------------|
 | 
				
			||||||
 | 
					| RESET_DEV            | 0x1C  | 0x8000 | 强制复位设备                 |
 | 
				
			||||||
 | 
					| CONFIG (休眠)        | 0x1A  | 0x2801 | 进入配置模式                 |
 | 
				
			||||||
 | 
					| CLOCK_DIVIDERS_CH0   | 0x14  | 0x1002 | 通道0时钟分频设置            |
 | 
				
			||||||
 | 
					| RCOUNT_CH0           | 0x08  | 0x04D6 | 通道0转换时间=991μs          |
 | 
				
			||||||
 | 
					| SETTLECOUNT_CH0      | 0x10  | 0x000A | 通道0稳定时间=8μs            |
 | 
				
			||||||
 | 
					| DRIVE_CURRENT_CH0    | 0x1E  | 0x9000 | 通道0驱动电流=18(约1.5mA)  |
 | 
				
			||||||
 | 
					| MUX_CONFIG           | 0x1B  | 0x820C | 启用双通道扫描(Ch0→Ch1)    |
 | 
				
			||||||
 | 
					| CONFIG (启动)        | 0x1A  | 0x1601 | 退出休眠,启用外部时钟       |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					通过以上配置,设备将按以下流程运行:
 | 
				
			||||||
 | 
					1. 复位后进入休眠模式,配置寄存器。
 | 
				
			||||||
 | 
					2. 设置通道0的时钟分频、转换时间、稳定时间和驱动电流。
 | 
				
			||||||
 | 
					3. 启用双通道自动扫描,设置去抖动滤波器。
 | 
				
			||||||
 | 
					4. 退出休眠模式,开始连续转换。
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## **自动校准配置(可选)**
 | 
				
			||||||
 | 
					### **适用场景**
 | 
				
			||||||
 | 
					- Rp未知或环境变化大时,通过自动校准获取初始电流值。
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### **操作流程**
 | 
				
			||||||
 | 
					1. **设置目标至最大距离**
 | 
				
			||||||
 | 
					2. **进入休眠模式**:
 | 
				
			||||||
 | 
					   ```c
 | 
				
			||||||
 | 
					   write_register(0x1A, 0x2801); // SLEEP_MODE_EN=1
 | 
				
			||||||
 | 
					   ```
 | 
				
			||||||
 | 
					3. **启用自动校准**:
 | 
				
			||||||
 | 
					   ```c
 | 
				
			||||||
 | 
					   // CLOCK_DIVIDERS_CH0配置分频
 | 
				
			||||||
 | 
					   write_register(0x14, 0x1002); // FIN_DIV=1, FREF_DIV=2
 | 
				
			||||||
 | 
					   // 禁用Rp覆盖
 | 
				
			||||||
 | 
					   uint16_t config = read_register(0x1A);
 | 
				
			||||||
 | 
					   config &= ~(1 << 12); // RP_OVERRIDE_EN=0
 | 
				
			||||||
 | 
					   write_register(0x1A, config);
 | 
				
			||||||
 | 
					   ```
 | 
				
			||||||
 | 
					4. **启动测量并读取初始值**:
 | 
				
			||||||
 | 
					   ```c
 | 
				
			||||||
 | 
					   write_register(0x1A, 0x1601); // 退出休眠
 | 
				
			||||||
 | 
					   delay(10); // 等待至少一次转换完成
 | 
				
			||||||
 | 
					   uint16_t init_value = (read_register(0x1E) >> 6) & 0x1F; // 读取CH0_INIT_IDRIVE
 | 
				
			||||||
 | 
					   ```
 | 
				
			||||||
 | 
					5. **写入驱动电流**:
 | 
				
			||||||
 | 
					   ```c
 | 
				
			||||||
 | 
					   uint16_t drive_current = (init_value << 11) | 0x0000;
 | 
				
			||||||
 | 
					   write_register(0x1E, drive_current);
 | 
				
			||||||
 | 
					   ```
 | 
				
			||||||
 | 
					   
 | 
				
			||||||
 | 
					---
 | 
				
			||||||
@@ -41,12 +41,12 @@ function(print_size_of_target TARGET)
 | 
				
			|||||||
            )
 | 
					            )
 | 
				
			||||||
endfunction()
 | 
					endfunction()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function(_generate_file TARGET PREFIX VERSION DATE OUTPUT_EXTENSION OBJCOPY_BFD_OUTPUT)
 | 
					function(_generate_file TARGET PREFIX VERSION DATE IIC_TYPE OUTPUT_EXTENSION OBJCOPY_BFD_OUTPUT)
 | 
				
			||||||
    get_target_property(TARGET_OUTPUT_NAME ${TARGET} OUTPUT_NAME)
 | 
					    get_target_property(TARGET_OUTPUT_NAME ${TARGET} OUTPUT_NAME)
 | 
				
			||||||
    if (TARGET_OUTPUT_NAME)
 | 
					    if (TARGET_OUTPUT_NAME)
 | 
				
			||||||
        set(OUTPUT_FILE_NAME "${PREFIX}_${VERSION}_${DATE}.${OUTPUT_EXTENSION}")
 | 
					        set(OUTPUT_FILE_NAME "${PREFIX}_${VERSION}_${DATE}_${IIC_TYPE}.${OUTPUT_EXTENSION}")
 | 
				
			||||||
    else()
 | 
					    else()
 | 
				
			||||||
        set(OUTPUT_FILE_NAME "${TARGET}_${VERSION}_${DATE}.${OUTPUT_EXTENSION}")
 | 
					        set(OUTPUT_FILE_NAME "${TARGET}_${VERSION}_${DATE}_${IIC_TYPE}.${OUTPUT_EXTENSION}")
 | 
				
			||||||
    endif()
 | 
					    endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    get_target_property(RUNTIME_OUTPUT_DIRECTORY ${TARGET} RUNTIME_OUTPUT_DIRECTORY)
 | 
					    get_target_property(RUNTIME_OUTPUT_DIRECTORY ${TARGET} RUNTIME_OUTPUT_DIRECTORY)
 | 
				
			||||||
@@ -66,11 +66,11 @@ function(_generate_file TARGET PREFIX VERSION DATE OUTPUT_EXTENSION OBJCOPY_BFD_
 | 
				
			|||||||
endfunction()
 | 
					endfunction()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function(generate_binary_file TARGET PREFIX)
 | 
					function(generate_binary_file TARGET PREFIX)
 | 
				
			||||||
    _generate_file(${TARGET} "${PREFIX}" "${VERSION}" "${CURRENT_DATE}" "bin" "binary")
 | 
					    _generate_file(${TARGET} "${PREFIX}" "${VERSION}" "${CURRENT_DATE}" "${IIC_TYPE}" "bin" "binary")
 | 
				
			||||||
endfunction()
 | 
					endfunction()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function(generate_hex_file TARGET PREFIX)
 | 
					function(generate_hex_file TARGET PREFIX)
 | 
				
			||||||
    _generate_file(${TARGET} "${PREFIX}" "${VERSION}" "${CURRENT_DATE}" "hex" "ihex")
 | 
					    _generate_file(${TARGET} "${PREFIX}" "${VERSION}" "${CURRENT_DATE}" "${IIC_TYPE}" "hex" "ihex")
 | 
				
			||||||
endfunction()
 | 
					endfunction()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set(CMAKE_EXECUTABLE_SUFFIX_C   .elf)
 | 
					set(CMAKE_EXECUTABLE_SUFFIX_C   .elf)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,13 +5,16 @@
 | 
				
			|||||||
#ifndef BOARD_CONFIG_H
 | 
					#ifndef BOARD_CONFIG_H
 | 
				
			||||||
#define BOARD_CONFIG_H
 | 
					#define BOARD_CONFIG_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define SOFTWARE_IIC
 | 
					// #define SOFTWARE_IIC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// #define DEBUG_VERBOES
 | 
					// #define DEBUG_VERBOES
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// #define RS485_MAX13487
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// #define DEBUG_VOFA_TOOL
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2C_SPEED       20000
 | 
					 | 
				
			||||||
#define RCU_GPIO_I2C         RCU_GPIOF
 | 
					#define RCU_GPIO_I2C         RCU_GPIOF
 | 
				
			||||||
#define RCU_I2C              RCU_I2C0
 | 
					#define RCU_I2C              RCU_I2C0
 | 
				
			||||||
#define I2C_SCL_PORT         GPIOF
 | 
					#define I2C_SCL_PORT         GPIOF
 | 
				
			||||||
@@ -33,4 +36,13 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define LED_PORT             GPIOA
 | 
				
			||||||
 | 
					#define LED_PIN              GPIO_PIN_7
 | 
				
			||||||
 | 
					#define LED_RCU              RCU_GPIOA
 | 
				
			||||||
 | 
					#define LED_BLINK_TIMER_RCU  RCU_TIMER16
 | 
				
			||||||
 | 
					#define LED_BLINK_TIMER      TIMER16
 | 
				
			||||||
 | 
					#define LED_BLINK_IRQ        TIMER16_IRQn
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif //BOARD_CONFIG_H
 | 
					#endif //BOARD_CONFIG_H
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								inc/fwdgt.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								inc/fwdgt.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
				
			|||||||
 | 
					//
 | 
				
			||||||
 | 
					// Created by yelv1 on 24-12-29.
 | 
				
			||||||
 | 
					//
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifndef FWDGT_H
 | 
				
			||||||
 | 
					#define FWDGT_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "gd32e23x.h"
 | 
				
			||||||
 | 
					#include "board_config.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void watchdog_init(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void fwdgt_reset_mcu(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#endif //FWDGT_H
 | 
				
			||||||
@@ -19,13 +19,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2C_SCL_HIGH()      gpio_bit_set(I2C_SCL_PORT, I2C_SCL_PIN)
 | 
					#define I2C_SPEED       100*(1000)
 | 
				
			||||||
#define I2C_SCL_LOW()       gpio_bit_reset(I2C_SCL_PORT, I2C_SCL_PIN)
 | 
					 | 
				
			||||||
#define I2C_SDA_HIGH()      gpio_bit_set(I2C_SDA_PORT, I2C_SDA_PIN)
 | 
					 | 
				
			||||||
#define I2C_SDA_LOW()       gpio_bit_reset(I2C_SDA_PORT, I2C_SDA_PIN)
 | 
					 | 
				
			||||||
#define I2C_SDA_READ()      gpio_input_bit_get(I2C_SDA_PORT, I2C_SDA_PIN)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/******************************************************************************/
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define I2C_TIME_OUT    (uint16_t)(5000)
 | 
					#define I2C_TIME_OUT    (uint16_t)(5000)
 | 
				
			||||||
#define I2C_OK          1
 | 
					#define I2C_OK          1
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -51,16 +51,18 @@
 | 
				
			|||||||
#define LDC1612_DRIVE_CURRENT              0x9000  //A000
 | 
					#define LDC1612_DRIVE_CURRENT              0x9000  //A000
 | 
				
			||||||
#define LDC1612_MUX_CONFIG                 0x020C  // no auto scan and filter bandwidth 3.3MHz
 | 
					#define LDC1612_MUX_CONFIG                 0x020C  // no auto scan and filter bandwidth 3.3MHz
 | 
				
			||||||
#define LDC1612_SENSOR_CONFIG              0x1601
 | 
					#define LDC1612_SENSOR_CONFIG              0x1601
 | 
				
			||||||
 | 
					#define LDC1612_SLEEP_MODE                 0x2801
 | 
				
			||||||
#define LDC1612_ERROR_CONFIG               0x0000
 | 
					#define LDC1612_ERROR_CONFIG               0x0000
 | 
				
			||||||
#define LC_STABILIZE_TIME_CH0              0x001E //30
 | 
					#define LC_STABILIZE_TIME_CH0              0x001E //30
 | 
				
			||||||
#define LDC1612_RESET_DEV                  0x8000 //[15:0] 0b1000 0000 0000 0000
 | 
					#define LDC1612_RESET_DEV                  0x8000 //[15:0] 0b1000 0000 0000 0000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define COIL_RP_KOM              15.727
 | 
					#define COIL_RP_KOM              7.2
 | 
				
			||||||
#define COIL_L_UH                33
 | 
					#define COIL_L_UH                33
 | 
				
			||||||
#define COIL_C_PF                150
 | 
					#define COIL_C_PF                150
 | 
				
			||||||
#define COIL_Q_FACTOR            35.97
 | 
					#define COIL_Q_FACTOR            35.97
 | 
				
			||||||
 | 
					#define COIL_FREQ_HZ             2262000
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -94,4 +96,6 @@ uint32_t ldc1612_get_raw_channel_result(uint8_t channel);
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
uint32_t ldc1612_parse_raw_result(uint32_t raw_result);
 | 
					uint32_t ldc1612_parse_raw_result(uint32_t raw_result);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void ldc1612_drvie_current_detect(uint8_t channel);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif //LDC1612_H
 | 
					#endif //LDC1612_H
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										19
									
								
								inc/led.h
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								inc/led.h
									
									
									
									
									
								
							@@ -6,24 +6,7 @@
 | 
				
			|||||||
#define LED_H
 | 
					#define LED_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "gd32e23x_it.h"
 | 
					#include "gd32e23x_it.h"
 | 
				
			||||||
#include "gd32e23x.h"
 | 
					#include "board_config.h"
 | 
				
			||||||
#include "systick.h"
 | 
					 | 
				
			||||||
#include <stdbool.h>
 | 
					 | 
				
			||||||
#include <string.h>
 | 
					 | 
				
			||||||
#include <stdio.h>
 | 
					 | 
				
			||||||
#include <stdlib.h>
 | 
					 | 
				
			||||||
#include <math.h>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/******************************************************************************/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#define LED_PORT            GPIOA
 | 
					 | 
				
			||||||
#define LED_PIN             GPIO_PIN_7
 | 
					 | 
				
			||||||
#define LED_RCU             RCU_GPIOA
 | 
					 | 
				
			||||||
#define LED_TIMER_RCU       RCU_TIMER16
 | 
					 | 
				
			||||||
#define LED_TIMER           TIMER16
 | 
					 | 
				
			||||||
#define LED_IRQ             TIMER16_IRQn
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/******************************************************************************/
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
void led_config(void);
 | 
					void led_config(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										19
									
								
								inc/main.h
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								inc/main.h
									
									
									
									
									
								
							@@ -35,10 +35,21 @@ OF SUCH DAMAGE.
 | 
				
			|||||||
#ifndef MAIN_H
 | 
					#ifndef MAIN_H
 | 
				
			||||||
#define MAIN_H
 | 
					#define MAIN_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// #define DEBUG_VERBOES
 | 
					#include <stdio.h>
 | 
				
			||||||
 | 
					#include <stdbool.h>
 | 
				
			||||||
 | 
					#include "gd32e23x.h"
 | 
				
			||||||
 | 
					#include "systick.h"
 | 
				
			||||||
 | 
					#include "gd32e23x_libopt.h"
 | 
				
			||||||
 | 
					#include "rs485.h"
 | 
				
			||||||
 | 
					#include "led.h"
 | 
				
			||||||
 | 
					#include "ldc1612.h"
 | 
				
			||||||
 | 
					#include "fwdgt.h"
 | 
				
			||||||
 | 
					#include "board_config.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void watchdog_init(void);
 | 
					#ifdef SOFTWARE_IIC
 | 
				
			||||||
 | 
					#include "soft_i2c.h"
 | 
				
			||||||
void reset_mcu(void);
 | 
					#else
 | 
				
			||||||
 | 
					#include "i2c.h"
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif /* MAIN_H */
 | 
					#endif /* MAIN_H */
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										40
									
								
								inc/rs485.h
									
									
									
									
									
								
							
							
						
						
									
										40
									
								
								inc/rs485.h
									
									
									
									
									
								
							@@ -8,33 +8,21 @@
 | 
				
			|||||||
#include "gd32e23x_it.h"
 | 
					#include "gd32e23x_it.h"
 | 
				
			||||||
#include "gd32e23x.h"
 | 
					#include "gd32e23x.h"
 | 
				
			||||||
#include "systick.h"
 | 
					#include "systick.h"
 | 
				
			||||||
#include <stdbool.h>
 | 
					 | 
				
			||||||
#include <string.h>
 | 
					 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <string.h>
 | 
				
			||||||
#include <sys/types.h>
 | 
					#include <stdbool.h>
 | 
				
			||||||
#include "i2c.h"
 | 
					 | 
				
			||||||
#include "ldc1612.h"
 | 
					#include "ldc1612.h"
 | 
				
			||||||
#include "tmp112.h"
 | 
					#include "tmp112.h"
 | 
				
			||||||
 | 
					#include "fwdgt.h"
 | 
				
			||||||
/******************************************************************************/
 | 
					#include "board_config.h"
 | 
				
			||||||
 | 
					 | 
				
			||||||
#define RS485_RCU            RCU_USART0
 | 
					 | 
				
			||||||
#define RS485_GPIO_RCU       RCU_GPIOA
 | 
					 | 
				
			||||||
#define RS485_GPIO_PORT      GPIOA
 | 
					 | 
				
			||||||
#define RS485_TX_PIN         GPIO_PIN_2
 | 
					 | 
				
			||||||
#define RS485_RX_PIN         GPIO_PIN_3
 | 
					 | 
				
			||||||
#define RS485_PHY            USART0
 | 
					 | 
				
			||||||
#define RS485_BAUDRATE       115200U
 | 
					 | 
				
			||||||
#define RS485_EN_PIN         GPIO_PIN_1
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define RX_BUFFER_SIZE            32
 | 
					#define RX_BUFFER_SIZE            32
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define LDC1612_PACKAGE_HEADER   0xD5
 | 
					#define PROTOCOL_PACKAGE_HEADER   0xD5
 | 
				
			||||||
#define LDC1612_BOARD_TYPE       0x03
 | 
					#define PROTOCOL_BOARD_TYPE       0x03
 | 
				
			||||||
#define LDC1612_PACKAGE_LENGTH   0x02
 | 
					#define PROTOCOL_PACKAGE_LENGTH   0x02
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -49,14 +37,28 @@ typedef enum
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					uint8_t Command_Write(uint8_t *data, uint8_t length);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					uint8_t Command_GetCommand(uint8_t *command);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void rs485_config(void);
 | 
					void rs485_config(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void process_command(uint8_t* cmd, size_t length);
 | 
					void process_command(uint8_t* cmd, size_t length);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
uint8_t calculate_crc(uint8_t data[], uint8_t data_length);
 | 
					uint8_t calculate_crc(uint8_t data[], uint8_t data_length);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_package_crc(uint8_t* data, uint8_t data_length);
 | 
					validation_result_t validate_package_crc(uint8_t* data, uint8_t data_length);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_package_header(uint8_t* data);
 | 
					validation_result_t validate_package_header(uint8_t* data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_package_type(uint8_t* data);
 | 
					validation_result_t validate_package_type(uint8_t* data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_data_length(uint8_t* data);
 | 
					validation_result_t validate_data_length(uint8_t* data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void eddy_current_value_report(void);
 | 
					void eddy_current_value_report(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void tempture_value_report(void);
 | 
					void tempture_value_report(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif //RS485_H
 | 
					#endif //RS485_H
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -7,12 +7,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include "gd32e23x_it.h"
 | 
					#include "gd32e23x_it.h"
 | 
				
			||||||
#include "gd32e23x.h"
 | 
					#include "gd32e23x.h"
 | 
				
			||||||
#include "systick.h"
 | 
					 | 
				
			||||||
#include <stdbool.h>
 | 
					 | 
				
			||||||
#include <string.h>
 | 
					 | 
				
			||||||
#include <stdio.h>
 | 
					 | 
				
			||||||
#include <stdlib.h>
 | 
					 | 
				
			||||||
#include <math.h>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "board_config.h"
 | 
					#include "board_config.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -28,6 +22,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
/******************************************************************************/
 | 
					/******************************************************************************/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define TMP112A_TEMP_REG     0x00
 | 
				
			||||||
 | 
					
 | 
				
			||||||
uint32_t tmp112a_get_raw_channel_result(void);
 | 
					uint32_t tmp112a_get_raw_channel_result(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif //TMP112_H
 | 
					#endif //TMP112_H
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										28
									
								
								src/fwdgt.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								src/fwdgt.c
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,28 @@
 | 
				
			|||||||
 | 
					//
 | 
				
			||||||
 | 
					// Created by yelv1 on 24-12-29.
 | 
				
			||||||
 | 
					//
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "fwdgt.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void watchdog_init(void) {
 | 
				
			||||||
 | 
					    /* Enable the LSI clock */
 | 
				
			||||||
 | 
					    rcu_osci_on(RCU_IRC40K);
 | 
				
			||||||
 | 
					    rcu_osci_stab_wait(RCU_IRC40K);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* Configure FWDGT counter clock: 40KHz(IRC40K) / 64 = 0.625 KHz */
 | 
				
			||||||
 | 
					    fwdgt_config(625, FWDGT_PSC_DIV64); // Set timeout to 1 seconds (625 / 0.625 KHz)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* Enable FWDGT */
 | 
				
			||||||
 | 
					    fwdgt_enable();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void fwdgt_reset_mcu(void) {
 | 
				
			||||||
 | 
					    /* Enable the write access to the FWDGT_CTL register */
 | 
				
			||||||
 | 
					    FWDGT_CTL = FWDGT_WRITEACCESS_ENABLE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* Configure FWDGT to trigger a system reset */
 | 
				
			||||||
 | 
					    fwdgt_config(50, FWDGT_PSC_DIV4);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* Reload the counter to trigger the reset */
 | 
				
			||||||
 | 
					    fwdgt_counter_reload();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -39,6 +39,8 @@ OF SUCH DAMAGE.
 | 
				
			|||||||
#include "rs485.h"
 | 
					#include "rs485.h"
 | 
				
			||||||
#include "led.h"
 | 
					#include "led.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern uint8_t readBuffer[16];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
    \brief      this function handles NMI exception
 | 
					    \brief      this function handles NMI exception
 | 
				
			||||||
    \param[in]  none
 | 
					    \param[in]  none
 | 
				
			||||||
@@ -103,15 +105,15 @@ void SysTick_Handler(void) {
 | 
				
			|||||||
  * @retval None
 | 
					  * @retval None
 | 
				
			||||||
  */
 | 
					  */
 | 
				
			||||||
void TIMER16_IRQHandler(void) {
 | 
					void TIMER16_IRQHandler(void) {
 | 
				
			||||||
    if (timer_interrupt_flag_get(LED_TIMER, TIMER_INT_FLAG_UP) == SET) {
 | 
					    if (timer_interrupt_flag_get(LED_BLINK_TIMER, TIMER_INT_FLAG_UP) == SET) {
 | 
				
			||||||
        timer_interrupt_flag_clear(LED_TIMER, TIMER_INT_FLAG_UP);
 | 
					        timer_interrupt_flag_clear(LED_BLINK_TIMER, TIMER_INT_FLAG_UP);
 | 
				
			||||||
        static uint8_t led_status = 0;
 | 
					        static uint8_t led_status = 0;
 | 
				
			||||||
        if (led_status) {
 | 
					        if (led_status) {
 | 
				
			||||||
            gpio_bit_write(LED_PORT, LED_PIN, RESET);
 | 
					            gpio_bit_write(LED_PORT, LED_PIN, RESET);
 | 
				
			||||||
            timer_autoreload_value_config(LED_TIMER, 19200);
 | 
					            timer_autoreload_value_config(LED_BLINK_TIMER, 19200);
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            gpio_bit_write(LED_PORT, LED_PIN, SET);
 | 
					            gpio_bit_write(LED_PORT, LED_PIN, SET);
 | 
				
			||||||
            timer_autoreload_value_config(LED_TIMER, 800);
 | 
					            timer_autoreload_value_config(LED_BLINK_TIMER, 800);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        led_status = !led_status;
 | 
					        led_status = !led_status;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -119,22 +121,21 @@ void TIMER16_IRQHandler(void) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void USART0_IRQHandler(void) {
 | 
					void USART0_IRQHandler(void) {
 | 
				
			||||||
    static uint8_t rx_index = 0;
 | 
					    static uint8_t rx_index = 0;
 | 
				
			||||||
    static uint8_t rx_buffer[RX_BUFFER_SIZE];
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (RESET != usart_interrupt_flag_get(USART0, USART_INT_FLAG_RBNE)) {
 | 
					    if (RESET != usart_interrupt_flag_get(USART0, USART_INT_FLAG_RBNE)) {
 | 
				
			||||||
        usart_interrupt_flag_clear(USART0, USART_INT_FLAG_RBNE);
 | 
					        // usart_interrupt_flag_clear(USART0, USART_INT_FLAG_RBNE);
 | 
				
			||||||
        uint8_t received_data = (uint8_t) usart_data_receive(USART0);
 | 
					        // uint8_t received_data = (uint8_t) usart_data_receive(USART0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // 将接收到的数据存储到缓冲区
 | 
					        // 将接收到的数据存储到缓冲区
 | 
				
			||||||
        if (rx_index < RX_BUFFER_SIZE - 1) {
 | 
					        if (rx_index < sizeof(readBuffer) - 1) {
 | 
				
			||||||
            rx_buffer[rx_index++] = received_data;
 | 
					            readBuffer[rx_index++] = usart_data_receive(USART0);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (RESET != usart_interrupt_flag_get(USART0, USART_INT_FLAG_IDLE)) {
 | 
					    if (RESET != usart_interrupt_flag_get(USART0, USART_INT_FLAG_IDLE)) {
 | 
				
			||||||
        usart_interrupt_flag_clear(USART0, USART_INT_FLAG_IDLE);
 | 
					        usart_interrupt_flag_clear(USART0, USART_INT_FLAG_IDLE);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        process_command(rx_buffer, rx_index); // 处理指令
 | 
					        Command_Write(readBuffer, rx_index);// 处理指令
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        rx_index = 0; // 重置缓冲区索引
 | 
					        rx_index = 0; // 重置缓冲区索引
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -276,3 +276,20 @@ uint32_t ldc1612_parse_raw_result(uint32_t raw_result) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    return raw_result;
 | 
					    return raw_result;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					void ldc1612_drvie_current_detect(uint8_t channel) {
 | 
				
			||||||
 | 
					    uint8_t data[2] = {0};
 | 
				
			||||||
 | 
					    uint16_t init_value = 0 , drive_current = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    ldc1612_set_sensor_config(LDC1612_SLEEP_MODE);
 | 
				
			||||||
 | 
					    ldc1612_set_freq_divide(channel);
 | 
				
			||||||
 | 
					    soft_i2c_read_16bits(LDC1612_ADDR, SENSOR_CONFIG_REG, data);
 | 
				
			||||||
 | 
					    ldc1612_set_sensor_config(LDC1612_SLEEP_MODE);
 | 
				
			||||||
 | 
					    ldc1612_set_sensor_config(LDC1612_SENSOR_CONFIG); //0x1A --0x1601
 | 
				
			||||||
 | 
					    delay_ms(10);
 | 
				
			||||||
 | 
					    soft_i2c_read_16bits(LDC1612_ADDR, SET_DRIVER_CURRENT_REG, data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    init_value = (((data[0] << 8) | data[1]) >> 6) & 0x1F;
 | 
				
			||||||
 | 
					    drive_current = (init_value << 11) | 0x0000;
 | 
				
			||||||
 | 
					    printf("init value: 0x%x\tdrive current: 0x%x\n", init_value, drive_current);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										14
									
								
								src/led.c
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								src/led.c
									
									
									
									
									
								
							@@ -11,8 +11,8 @@ void led_config(void) {
 | 
				
			|||||||
    gpio_output_options_set(LED_PORT, GPIO_OTYPE_PP, GPIO_OSPEED_50MHZ, LED_PIN);
 | 
					    gpio_output_options_set(LED_PORT, GPIO_OTYPE_PP, GPIO_OSPEED_50MHZ, LED_PIN);
 | 
				
			||||||
    gpio_bit_write(LED_PORT, LED_PIN, SET);
 | 
					    gpio_bit_write(LED_PORT, LED_PIN, SET);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    rcu_periph_clock_enable(LED_TIMER_RCU);
 | 
					    rcu_periph_clock_enable(LED_BLINK_TIMER_RCU);
 | 
				
			||||||
    timer_deinit(LED_TIMER);
 | 
					    timer_deinit(LED_BLINK_TIMER);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    timer_parameter_struct timer_initpara;
 | 
					    timer_parameter_struct timer_initpara;
 | 
				
			||||||
    timer_struct_para_init(&timer_initpara);
 | 
					    timer_struct_para_init(&timer_initpara);
 | 
				
			||||||
@@ -21,12 +21,12 @@ void led_config(void) {
 | 
				
			|||||||
    timer_initpara.counterdirection = TIMER_COUNTER_UP;
 | 
					    timer_initpara.counterdirection = TIMER_COUNTER_UP;
 | 
				
			||||||
    timer_initpara.period = 9999;
 | 
					    timer_initpara.period = 9999;
 | 
				
			||||||
    timer_initpara.clockdivision = TIMER_CKDIV_DIV1;
 | 
					    timer_initpara.clockdivision = TIMER_CKDIV_DIV1;
 | 
				
			||||||
    timer_init(LED_TIMER, &timer_initpara);
 | 
					    timer_init(LED_BLINK_TIMER, &timer_initpara);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    timer_auto_reload_shadow_enable(LED_TIMER);
 | 
					    timer_auto_reload_shadow_enable(LED_BLINK_TIMER);
 | 
				
			||||||
    timer_interrupt_enable(LED_TIMER, TIMER_INT_UP);
 | 
					    timer_interrupt_enable(LED_BLINK_TIMER, TIMER_INT_UP);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    timer_enable(LED_TIMER);
 | 
					    timer_enable(LED_BLINK_TIMER);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    nvic_irq_enable(LED_IRQ, 2);
 | 
					    nvic_irq_enable(LED_BLINK_IRQ, 3U);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										54
									
								
								src/main.c
									
									
									
									
									
								
							
							
						
						
									
										54
									
								
								src/main.c
									
									
									
									
									
								
							@@ -5,44 +5,10 @@
 | 
				
			|||||||
    \version 2024-02-22, V2.1.0, firmware for GD32E23x
 | 
					    \version 2024-02-22, V2.1.0, firmware for GD32E23x
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
#include "main.h"
 | 
					#include "main.h"
 | 
				
			||||||
#include <stdio.h>
 | 
					 | 
				
			||||||
#include "gd32e23x.h"
 | 
					 | 
				
			||||||
#include "systick.h"
 | 
					 | 
				
			||||||
#include "gd32e23x_libopt.h"
 | 
					 | 
				
			||||||
#include "rs485.h"
 | 
					 | 
				
			||||||
#include "led.h"
 | 
					 | 
				
			||||||
#include "i2c.h"
 | 
					 | 
				
			||||||
#include "ldc1612.h"
 | 
					 | 
				
			||||||
#include "board_config.h"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef SOFTWARE_IIC
 | 
					bool g_statusSwitch = false;
 | 
				
			||||||
#include "soft_i2c.h"
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
#include "i2c.h"
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
void watchdog_init(void) {
 | 
					uint8_t readBuffer[16];
 | 
				
			||||||
    /* Enable the LSI clock */
 | 
					 | 
				
			||||||
    rcu_osci_on(RCU_IRC40K);
 | 
					 | 
				
			||||||
    rcu_osci_stab_wait(RCU_IRC40K);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Configure FWDGT counter clock: 40KHz(IRC40K) / 64 = 0.625 KHz */
 | 
					 | 
				
			||||||
    fwdgt_config(625, FWDGT_PSC_DIV64); // Set timeout to 1 seconds (625 / 0.625 KHz)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Enable FWDGT */
 | 
					 | 
				
			||||||
    fwdgt_enable();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
void reset_mcu(void) {
 | 
					 | 
				
			||||||
    /* Enable the write access to the FWDGT_CTL register */
 | 
					 | 
				
			||||||
    FWDGT_CTL = FWDGT_WRITEACCESS_ENABLE;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Configure FWDGT to trigger a system reset */
 | 
					 | 
				
			||||||
    fwdgt_config(50, FWDGT_PSC_DIV4);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    /* Reload the counter to trigger the reset */
 | 
					 | 
				
			||||||
    fwdgt_counter_reload();
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
    \brief      main function
 | 
					    \brief      main function
 | 
				
			||||||
@@ -76,9 +42,23 @@ int main(void) {
 | 
				
			|||||||
    /* Initialize watchdog */
 | 
					    /* Initialize watchdog */
 | 
				
			||||||
    watchdog_init();
 | 
					    watchdog_init();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    uint8_t command[10];
 | 
				
			||||||
 | 
					    uint8_t command_length = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    while (1) {
 | 
					    while (1) {
 | 
				
			||||||
        delay_ms(99);
 | 
					
 | 
				
			||||||
 | 
					        // delay_ms(10);
 | 
				
			||||||
        fwdgt_counter_reload();
 | 
					        fwdgt_counter_reload();
 | 
				
			||||||
 | 
					        command_length = Command_GetCommand(command);
 | 
				
			||||||
 | 
					        if (command_length != 0)
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            for (int i = 0; i < command_length; i++)
 | 
				
			||||||
 | 
					            {
 | 
				
			||||||
 | 
					                printf("%c", command[i]);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        // if (g_statusSwitch)
 | 
				
			||||||
 | 
					        // {eddy_current_value_report();}
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										70
									
								
								src/rs485.c
									
									
									
									
									
								
							
							
						
						
									
										70
									
								
								src/rs485.c
									
									
									
									
									
								
							@@ -7,7 +7,46 @@
 | 
				
			|||||||
uint8_t package_header[3] = {0xB5, 0xF0, 0x04};
 | 
					uint8_t package_header[3] = {0xB5, 0xF0, 0x04};
 | 
				
			||||||
uint8_t package_data[4] = {0};
 | 
					uint8_t package_data[4] = {0};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					extern bool g_statusSwitch;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void rs485_config(void) {
 | 
					void rs485_config(void) {
 | 
				
			||||||
 | 
					#ifndef RS485_MAX13487
 | 
				
			||||||
 | 
					    rcu_periph_clock_enable(RS485_GPIO_RCU);
 | 
				
			||||||
 | 
					    rcu_periph_clock_enable(RS485_RCU);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    gpio_af_set(RS485_GPIO_PORT, GPIO_AF_1, RS485_TX_PIN | RS485_RX_PIN | RS485_EN_PIN);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* configure USART Tx&Rx as alternate function push-pull */
 | 
				
			||||||
 | 
					    gpio_mode_set(RS485_GPIO_PORT, GPIO_MODE_AF, GPIO_PUPD_PULLUP, RS485_TX_PIN | RS485_RX_PIN);
 | 
				
			||||||
 | 
					    gpio_output_options_set(RS485_GPIO_PORT, GPIO_OTYPE_PP, GPIO_OSPEED_10MHZ, RS485_TX_PIN | RS485_RX_PIN);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* configure RS485 EN Pin */
 | 
				
			||||||
 | 
					    gpio_mode_set(RS485_GPIO_PORT, GPIO_MODE_AF, GPIO_PUPD_NONE, RS485_EN_PIN);
 | 
				
			||||||
 | 
					    gpio_output_options_set(RS485_GPIO_PORT, GPIO_OTYPE_PP, GPIO_OSPEED_50MHZ, RS485_EN_PIN);
 | 
				
			||||||
 | 
					    // gpio_bit_write(RS485_GPIO_PORT, RS485_EN_PIN, SET);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* USART configure */
 | 
				
			||||||
 | 
					    usart_deinit(RS485_PHY);
 | 
				
			||||||
 | 
					    usart_baudrate_set(RS485_PHY, RS485_BAUDRATE);
 | 
				
			||||||
 | 
					    // usart_parity_config(RS485_PHY, USART_PM_NONE);
 | 
				
			||||||
 | 
					    // usart_word_length_set(RS485_PHY, USART_WL_8BIT);
 | 
				
			||||||
 | 
					    // usart_stop_bit_set(RS485_PHY, USART_STB_1BIT);
 | 
				
			||||||
 | 
					    usart_receive_config(RS485_PHY, USART_RECEIVE_ENABLE);
 | 
				
			||||||
 | 
					    usart_transmit_config(RS485_PHY, USART_TRANSMIT_ENABLE);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    usart_driver_assertime_config(RS485_PHY, 0x01);
 | 
				
			||||||
 | 
					    usart_driver_deassertime_config(RS485_PHY, 0x01);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // usart_depolarity_config(USART0, USART_DEP_HIGH);
 | 
				
			||||||
 | 
					    // usart_depolarity_config(USART0, USART_DEP_LOW);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    usart_rs485_driver_enable(RS485_PHY);
 | 
				
			||||||
 | 
					    usart_enable(RS485_PHY);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    nvic_irq_enable(USART0_IRQn, 0);
 | 
				
			||||||
 | 
					    usart_interrupt_enable(RS485_PHY, USART_INT_RBNE);
 | 
				
			||||||
 | 
					    usart_interrupt_enable(RS485_PHY, USART_INT_IDLE);
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
    rcu_periph_clock_enable(RS485_GPIO_RCU);
 | 
					    rcu_periph_clock_enable(RS485_GPIO_RCU);
 | 
				
			||||||
    rcu_periph_clock_enable(RS485_RCU);
 | 
					    rcu_periph_clock_enable(RS485_RCU);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -33,6 +72,7 @@ void rs485_config(void) {
 | 
				
			|||||||
    nvic_irq_enable(USART0_IRQn, 0);
 | 
					    nvic_irq_enable(USART0_IRQn, 0);
 | 
				
			||||||
    usart_interrupt_enable(RS485_PHY, USART_INT_RBNE);
 | 
					    usart_interrupt_enable(RS485_PHY, USART_INT_RBNE);
 | 
				
			||||||
    usart_interrupt_enable(RS485_PHY, USART_INT_IDLE);
 | 
					    usart_interrupt_enable(RS485_PHY, USART_INT_IDLE);
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void process_command(uint8_t *cmd, size_t length) {
 | 
					void process_command(uint8_t *cmd, size_t length) {
 | 
				
			||||||
@@ -49,14 +89,12 @@ void process_command(uint8_t *cmd, size_t length) {
 | 
				
			|||||||
            // printf("%d", length);
 | 
					            // printf("%d", length);
 | 
				
			||||||
            sprintf(combined_str, "%c%c", cmd[3], cmd[4]);
 | 
					            sprintf(combined_str, "%c%c", cmd[3], cmd[4]);
 | 
				
			||||||
            if (strcmp(combined_str, "M1") == 0) {
 | 
					            if (strcmp(combined_str, "M1") == 0) {
 | 
				
			||||||
                eddy_current_value_report();
 | 
					                g_statusSwitch = true;
 | 
				
			||||||
            } else if (strcmp(combined_str, "M2") == 0)
 | 
					            } else if (strcmp(combined_str, "M2") == 0) {
 | 
				
			||||||
            {
 | 
					                g_statusSwitch = false;
 | 
				
			||||||
                tempture_value_report();
 | 
					            } else if (strcmp(combined_str, "M3") == 0) {
 | 
				
			||||||
            } else if (strcmp(combined_str, "M3") == 0)
 | 
					                printf("%c%c%c%c%c%c", 0xB5, 0xF0, 0x02, 0x6F, 0x6B, 0xCC);
 | 
				
			||||||
            {
 | 
					                fwdgt_reset_mcu();
 | 
				
			||||||
                printf("%c%c%c%c%c%c", 0xB5, 0xF1, 0x02, 0x6F, 0x6B, 0xCC);
 | 
					 | 
				
			||||||
                reset_mcu();
 | 
					 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                printf("%c%c%c%c%c%c%c", 0xB5, 0xF0, 0x03, 0x65, 0x72, 0x72, 0x3C);
 | 
					                printf("%c%c%c%c%c%c%c", 0xB5, 0xF0, 0x03, 0x65, 0x72, 0x72, 0x3C);
 | 
				
			||||||
                return;
 | 
					                return;
 | 
				
			||||||
@@ -98,7 +136,7 @@ validation_result_t validate_package_crc(uint8_t *data, uint8_t data_length) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_package_header(uint8_t *data) {
 | 
					validation_result_t validate_package_header(uint8_t *data) {
 | 
				
			||||||
    if (data[0] == LDC1612_PACKAGE_HEADER) {
 | 
					    if (data[0] == PROTOCOL_PACKAGE_HEADER) {
 | 
				
			||||||
        return VALIDATION_SUCCESS;
 | 
					        return VALIDATION_SUCCESS;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        return VALIDATION_HEADER_ERROR;
 | 
					        return VALIDATION_HEADER_ERROR;
 | 
				
			||||||
@@ -106,7 +144,7 @@ validation_result_t validate_package_header(uint8_t *data) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_package_type(uint8_t *data) {
 | 
					validation_result_t validate_package_type(uint8_t *data) {
 | 
				
			||||||
    if (data[1] == LDC1612_BOARD_TYPE) {
 | 
					    if (data[1] == PROTOCOL_BOARD_TYPE) {
 | 
				
			||||||
        return VALIDATION_SUCCESS;
 | 
					        return VALIDATION_SUCCESS;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        return VALIDATION_TYPE_ERROR;
 | 
					        return VALIDATION_TYPE_ERROR;
 | 
				
			||||||
@@ -114,7 +152,7 @@ validation_result_t validate_package_type(uint8_t *data) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
validation_result_t validate_data_length(uint8_t *data) {
 | 
					validation_result_t validate_data_length(uint8_t *data) {
 | 
				
			||||||
    if (data[2] == LDC1612_PACKAGE_LENGTH) {
 | 
					    if (data[2] == PROTOCOL_PACKAGE_LENGTH) {
 | 
				
			||||||
        return VALIDATION_SUCCESS;
 | 
					        return VALIDATION_SUCCESS;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        return VALIDATION_LENGTH_ERROR;
 | 
					        return VALIDATION_LENGTH_ERROR;
 | 
				
			||||||
@@ -131,6 +169,15 @@ void eddy_current_value_report(void) {
 | 
				
			|||||||
    package_data[2] = (eddy_current_value_uint32 >> 8) & 0xFF;
 | 
					    package_data[2] = (eddy_current_value_uint32 >> 8) & 0xFF;
 | 
				
			||||||
    package_data[3] = eddy_current_value_uint32 & 0xFF;
 | 
					    package_data[3] = eddy_current_value_uint32 & 0xFF;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#ifdef DEBUG_VOFA_TOOL
 | 
				
			||||||
 | 
					    printf("%d\n", eddy_current_value_uint32);
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
					    package_data[0] = (eddy_current_value_uint32 >> 24) & 0xFF;
 | 
				
			||||||
 | 
					    package_data[1] = (eddy_current_value_uint32 >> 16) & 0xFF;
 | 
				
			||||||
 | 
					    package_data[2] = (eddy_current_value_uint32 >> 8) & 0xFF;
 | 
				
			||||||
 | 
					    package_data[3] = eddy_current_value_uint32 & 0xFF;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    uint8_t combined_data[7];
 | 
					    uint8_t combined_data[7];
 | 
				
			||||||
    memcpy(combined_data, package_header, 3);
 | 
					    memcpy(combined_data, package_header, 3);
 | 
				
			||||||
    memcpy(combined_data + 3, package_data, 4);
 | 
					    memcpy(combined_data + 3, package_data, 4);
 | 
				
			||||||
@@ -138,6 +185,7 @@ void eddy_current_value_report(void) {
 | 
				
			|||||||
    printf("%c%c%c", package_header[0], package_header[1], package_header[2]);
 | 
					    printf("%c%c%c", package_header[0], package_header[1], package_header[2]);
 | 
				
			||||||
    printf("%c%c%c%c", package_data[0], package_data[1], package_data[2], package_data[3]);
 | 
					    printf("%c%c%c%c", package_data[0], package_data[1], package_data[2], package_data[3]);
 | 
				
			||||||
    printf("%c", calculate_crc(combined_data, 8));
 | 
					    printf("%c", calculate_crc(combined_data, 8));
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void tempture_value_report(void) {
 | 
					void tempture_value_report(void) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,7 +13,7 @@
 | 
				
			|||||||
void soft_i2c_delay(void) {
 | 
					void soft_i2c_delay(void) {
 | 
				
			||||||
    delay_us(20); // Adjust delay as needed
 | 
					    delay_us(20); // Adjust delay as needed
 | 
				
			||||||
    /* delay to freq
 | 
					    /* delay to freq
 | 
				
			||||||
     *  20KHz: delay_us(20);
 | 
					     *  15KHz: delay_us(20);
 | 
				
			||||||
     *  65KHz: delay_us(1);
 | 
					     *  65KHz: delay_us(1);
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -44,15 +44,12 @@ void soft_i2c_config(void) {
 | 
				
			|||||||
    \retval     none
 | 
					    \retval     none
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
void soft_i2c_start(void) {
 | 
					void soft_i2c_start(void) {
 | 
				
			||||||
    // sda_out();
 | 
					 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    I2C_SCL_HIGH();
 | 
					    I2C_SCL_HIGH();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SDA_LOW();
 | 
					    I2C_SDA_LOW();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SCL_LOW();
 | 
					    I2C_SCL_LOW();
 | 
				
			||||||
    // soft_i2c_delay();
 | 
					 | 
				
			||||||
    // 从全高开始,SCL为高期间,SDA下降沿表示start信号,再拉低SCL
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
@@ -69,7 +66,6 @@ void soft_i2c_stop(void) {
 | 
				
			|||||||
    I2C_SCL_HIGH();
 | 
					    I2C_SCL_HIGH();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    // 从全低开始,SCL为高期间,SDA上升沿表示stop
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
@@ -87,7 +83,6 @@ void soft_i2c_send_ack(void) {
 | 
				
			|||||||
    I2C_SCL_LOW();
 | 
					    I2C_SCL_LOW();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    // SCL产生一个正常的时钟周期,其间SDA始终为低电平,表示ACK
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
@@ -97,7 +92,6 @@ void soft_i2c_send_ack(void) {
 | 
				
			|||||||
    \retval     none
 | 
					    \retval     none
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
void soft_i2c_send_nack(void) {
 | 
					void soft_i2c_send_nack(void) {
 | 
				
			||||||
    // sda_out();
 | 
					 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SCL_HIGH();
 | 
					    I2C_SCL_HIGH();
 | 
				
			||||||
@@ -105,7 +99,6 @@ void soft_i2c_send_nack(void) {
 | 
				
			|||||||
    I2C_SCL_LOW();
 | 
					    I2C_SCL_LOW();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    // SCL产生一个正常的时钟周期,其间SDA始终为高电平,表示NACK
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
@@ -115,13 +108,11 @@ void soft_i2c_send_nack(void) {
 | 
				
			|||||||
    \retval     0: ACK received, 1: ACK not received
 | 
					    \retval     0: ACK received, 1: ACK not received
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
uint8_t soft_i2c_wait_ack(void) {
 | 
					uint8_t soft_i2c_wait_ack(void) {
 | 
				
			||||||
    // sda_in();
 | 
					 | 
				
			||||||
    I2C_SDA_HIGH();
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    I2C_SCL_HIGH();
 | 
					    I2C_SCL_HIGH();
 | 
				
			||||||
    soft_i2c_delay();
 | 
					    soft_i2c_delay();
 | 
				
			||||||
    uint8_t ack = !I2C_SDA_READ();
 | 
					    uint8_t ack = !I2C_SDA_READ();
 | 
				
			||||||
    //ACK信号是第九个时钟期间,SDA被从机在SCL高期间,拉低并保持低电平。此处判断SDA是否被拉低,被拉低则返回0,取反为1,表示收到ACK
 | 
					 | 
				
			||||||
    I2C_SCL_LOW();
 | 
					    I2C_SCL_LOW();
 | 
				
			||||||
    return ack;
 | 
					    return ack;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -135,19 +126,18 @@ uint8_t soft_i2c_wait_ack(void) {
 | 
				
			|||||||
void soft_i2c_send_byte(uint8_t byte) {
 | 
					void soft_i2c_send_byte(uint8_t byte) {
 | 
				
			||||||
    // sda_out();
 | 
					    // sda_out();
 | 
				
			||||||
    for (int i = 0; i < 8; i++) {
 | 
					    for (int i = 0; i < 8; i++) {
 | 
				
			||||||
        if (byte & 0x80) { //通过&操作获取第一位是1还是0
 | 
					        if (byte & 0x80) {
 | 
				
			||||||
            I2C_SDA_HIGH(); //SCL低电平期间,SDA高电平表示1
 | 
					            I2C_SDA_HIGH();
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            I2C_SDA_LOW(); //SCL低电平期间,SDA低电平表示0
 | 
					            I2C_SDA_LOW();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        byte <<= 1; //左移一位,把原本第二位的数据移到第一位,再判断高低电平
 | 
					        byte <<= 1;
 | 
				
			||||||
        soft_i2c_delay();
 | 
					        soft_i2c_delay();
 | 
				
			||||||
        I2C_SCL_HIGH(); //SCL拉高电平,SDA电平状态保持不变
 | 
					        I2C_SCL_HIGH();
 | 
				
			||||||
 | 
					        soft_i2c_delay();
 | 
				
			||||||
 | 
					        I2C_SCL_LOW();
 | 
				
			||||||
        soft_i2c_delay();
 | 
					        soft_i2c_delay();
 | 
				
			||||||
        I2C_SCL_LOW(); //SCL拉低电平
 | 
					 | 
				
			||||||
        delay_us(5);
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    // i2c_wait_ack();
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*!
 | 
					/*!
 | 
				
			||||||
@@ -157,9 +147,8 @@ void soft_i2c_send_byte(uint8_t byte) {
 | 
				
			|||||||
    \retval     received byte
 | 
					    \retval     received byte
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
uint8_t soft_i2c_receive_byte(uint8_t ack) {
 | 
					uint8_t soft_i2c_receive_byte(uint8_t ack) {
 | 
				
			||||||
    // sda_in();
 | 
					 | 
				
			||||||
    uint8_t byte = 0;
 | 
					    uint8_t byte = 0;
 | 
				
			||||||
    I2C_SDA_HIGH(); //从高开始
 | 
					    I2C_SDA_HIGH();
 | 
				
			||||||
    for (int i = 0; i < 8; i++) {
 | 
					    for (int i = 0; i < 8; i++) {
 | 
				
			||||||
        byte <<= 1;
 | 
					        byte <<= 1;
 | 
				
			||||||
        I2C_SCL_HIGH();
 | 
					        I2C_SCL_HIGH();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -11,9 +11,9 @@ uint32_t tmp112a_get_raw_channel_result(void) {
 | 
				
			|||||||
    // ldc1612_iic_read_16bits(CONVERTION_RESULT_REG_START + channel, value);
 | 
					    // ldc1612_iic_read_16bits(CONVERTION_RESULT_REG_START + channel, value);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef SOFTWARE_IIC
 | 
					#ifdef SOFTWARE_IIC
 | 
				
			||||||
    soft_i2c_read_16bits(TMP112A_ADDR, 0x00, value);
 | 
					    soft_i2c_read_16bits(TMP112A_ADDR, TMP112A_TEMP_REG, value);
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
    i2c_read_16bits(TMP112A_ADDR, 0x00, value);
 | 
					    i2c_read_16bits(TMP112A_ADDR, TMP112A_TEMP_REG, value);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    raw_value = ((uint16_t) (value[0] << 4) | (value[1]>>4));
 | 
					    raw_value = ((uint16_t) (value[0] << 4) | (value[1]>>4));
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user