Compare commits
No commits in common. "be81eb0c2ef07c9a75d4e801b4efbe739388aab5" and "d5814ddd62a83f8fb15bce785a636e3e35a3c3d4" have entirely different histories.
be81eb0c2e
...
d5814ddd62
@ -5,8 +5,6 @@
|
|||||||
#ifndef MLX90614_H
|
#ifndef MLX90614_H
|
||||||
#define MLX90614_H
|
#define MLX90614_H
|
||||||
|
|
||||||
#define I2C_EVENT_MASTER_MODE_SELECT ((uint32_t)(I2C_FLAG_I2CBSY | I2C_FLAG_MASTER | I2C_FLAG_RBNE))
|
|
||||||
|
|
||||||
void i2c_config(void);
|
void i2c_config(void);
|
||||||
int read_ir_mlx90614(void);
|
int read_ir_mlx90614(void);
|
||||||
|
|
||||||
|
@ -5,9 +5,9 @@
|
|||||||
#include "mlx90614.h"
|
#include "mlx90614.h"
|
||||||
#include "gd32e23x.h"
|
#include "gd32e23x.h"
|
||||||
#include "systick.h"
|
#include "systick.h"
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
void i2c_config(void) {
|
void i2c_config(void)
|
||||||
|
{
|
||||||
rcu_periph_clock_enable(RCU_I2C0);
|
rcu_periph_clock_enable(RCU_I2C0);
|
||||||
rcu_periph_clock_enable(GPIOF);
|
rcu_periph_clock_enable(GPIOF);
|
||||||
|
|
||||||
@ -23,34 +23,34 @@ void i2c_config(void) {
|
|||||||
nvic_irq_enable(I2C0_ER_IRQn, 2);
|
nvic_irq_enable(I2C0_ER_IRQn, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
int read_ir_mlx90614(void) {
|
int read_ir_mlx90614(void)
|
||||||
|
{
|
||||||
uint8_t Data[5];
|
uint8_t Data[5];
|
||||||
int inttemp_ir = 0;
|
int inttemp_ir = 0;
|
||||||
uint32_t TIMEOUT = 0;
|
uint32_t TIMEOUT = 0;
|
||||||
while (TIMEOUT < 10000 && i2c_flag_get(I2C0, I2C_FLAG_I2CBSY))
|
while (TIMEOUT < 10000 && i2c_flag_get(I2C0, I2C_FLAG_I2CBSY))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR0\r\n");
|
//printf("ERROR0\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
TIMEOUT = 0;
|
TIMEOUT = 0;
|
||||||
// I2C_GenerateSTART(I2C0, ENABLE);
|
I2C_GenerateSTART(I2C0, ENABLE);
|
||||||
i2c_start_on_bus(I2C0);
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_MODE_SELECT))
|
||||||
// while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_MODE_SELECT))
|
|
||||||
while (TIMEOUT < 10000 && !i2c_flag_get(I2C0, I2C_EVENT_MASTER_MODE_SELECT))
|
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR1\r\n");
|
//printf("ERROR1\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
// I2C_AcknowledgeConfig(I2C0,DISABLE);
|
// I2C_AcknowledgeConfig(I2C0,DISABLE);
|
||||||
TIMEOUT = 0;
|
TIMEOUT = 0;
|
||||||
// I2C_Send7bitAddress(I2C0, 0XB4, I2C_Direction_Transmitter);
|
I2C_Send7bitAddress(I2C0, 0XB4, I2C_Direction_Transmitter);
|
||||||
i2c_master_addressing(I2C0, 0XB4, I2C_TRANSMITTER);
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_TRANSMITTER_MODE_SELECTED))
|
||||||
// while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_TRANSMITTER_MODE_SELECTED))
|
|
||||||
while (TIMEOUT < 10000 && !i2c_flag_get(I2C0, I2C_FLAG_TR))
|
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
printf("ERROR2\r\n");
|
printf("ERROR2\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -60,7 +60,8 @@ int read_ir_mlx90614(void) {
|
|||||||
I2C_GenerateSTART(I2C0, ENABLE);
|
I2C_GenerateSTART(I2C0, ENABLE);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_MODE_SELECT))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_MODE_SELECT))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR3\r\n");
|
//printf("ERROR3\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -68,7 +69,8 @@ int read_ir_mlx90614(void) {
|
|||||||
I2C_Send7bitAddress(I2C0, 0XB4, I2C_Direction_Receiver);
|
I2C_Send7bitAddress(I2C0, 0XB4, I2C_Direction_Receiver);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR4\r\n");
|
//printf("ERROR4\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -77,7 +79,8 @@ int read_ir_mlx90614(void) {
|
|||||||
Data[0] = I2C_ReceiveData(I2C0);
|
Data[0] = I2C_ReceiveData(I2C0);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR5\r\n");
|
//printf("ERROR5\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -86,7 +89,8 @@ int read_ir_mlx90614(void) {
|
|||||||
Data[1] = I2C_ReceiveData(I2C0);
|
Data[1] = I2C_ReceiveData(I2C0);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR6\r\n");
|
//printf("ERROR6\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -95,7 +99,8 @@ int read_ir_mlx90614(void) {
|
|||||||
Data[2] = I2C_ReceiveData(I2C0);
|
Data[2] = I2C_ReceiveData(I2C0);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR7\r\n");
|
//printf("ERROR7\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
@ -105,7 +110,8 @@ int read_ir_mlx90614(void) {
|
|||||||
Data[3] = I2C_ReceiveData(I2C0);
|
Data[3] = I2C_ReceiveData(I2C0);
|
||||||
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
while (TIMEOUT < 10000 && !I2C_CheckEvent(I2C0, I2C_EVENT_MASTER_BYTE_RECEIVED))
|
||||||
TIMEOUT++;
|
TIMEOUT++;
|
||||||
if (TIMEOUT >= 10000) {
|
if (TIMEOUT >= 10000)
|
||||||
|
{
|
||||||
//printf("ERROR11\r\n");
|
//printf("ERROR11\r\n");
|
||||||
return -410;
|
return -410;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user