This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
Solar-Panel/modbus.c

119 lines
3.2 KiB
C
Raw Permalink Normal View History

2023-02-28 14:00:54 +00:00
#include "modbus.h"
#include "crc.h"
2023-03-03 15:11:29 +00:00
#include "uart.h"
2023-02-28 14:00:54 +00:00
#include <xc.h>
#include <stdint.h>
#include <stdio.h>
// Modbus functions
#define READ_INPUT_REGISTERS 0x04
#define READ_HOLDING_REGISTERS 0x03
#define WRITE_SINGLE_REGISTER 0x06
// Modbus data model
uint8_t modbusAddress;
uint16_t input_registers[2];
uint16_t holding_registers[2];
2023-03-10 12:49:32 +00:00
2023-02-28 14:00:54 +00:00
// Modbus error codes
#define ILLEGAL_FUNCTION 1
#define ILLEGAL_DATA_ADDRESS 2
#define ILLEGAL_DATA_VALUE 3
#define SLAVE_DEVICE_FAILURE 4
/**
* Buffers for serial receive and send operations
* which are more than one byte long
**/
uint8_t rx_buf[256];
uint8_t tx_buf[256];
// Current position pointer for storing receive position
uint8_t recPtr = 0;
void modbus_timer(void)
{
2023-03-10 12:49:32 +00:00
INTCONbits.TMR0IF = 0;
recPtr = 0;
TMR0_StopTimer();
modbus_analyse_and_answer();
2023-02-28 14:00:54 +00:00
}
2023-03-10 14:13:26 +00:00
extern uint16_t measure_voltage();
2023-03-03 15:11:29 +00:00
uint8_t modbus_analyse_and_answer(void) {
2023-02-28 14:00:54 +00:00
// TODO -> complete the modbus analyse and answer
2023-03-14 14:25:45 +00:00
uint16_t length = 0;
2023-03-10 14:13:26 +00:00
if(rx_buf[0] == modbusAddress){
tx_buf[0] = rx_buf[0]; // Adress
tx_buf[1] = rx_buf[1]; // Function
2023-03-14 14:25:45 +00:00
uint16_t adresseRegister = ((uint16_t)rx_buf[2] << 8) | rx_buf[3];
2023-03-10 14:13:26 +00:00
2023-03-14 14:25:45 +00:00
switch(rx_buf[1]){ // Check the function from rx buffer
2023-03-10 14:13:26 +00:00
case READ_INPUT_REGISTERS:
2023-03-14 14:25:45 +00:00
length = ((uint16_t)rx_buf[4] << 8) | rx_buf[5];
tx_buf[2] = (uint8_t)(length*2); // Data length
for(uint16_t i = 0; i < length; i++){ // Data
tx_buf[i*2+4] = input_registers[adresseRegister+i];
tx_buf[i*2+3] = (input_registers[adresseRegister+i] >> 8);
}
length*=2;
length+=3;
2023-03-10 14:13:26 +00:00
break;
case READ_HOLDING_REGISTERS:
2023-03-14 14:25:45 +00:00
length = ((uint16_t)rx_buf[4] << 8) | rx_buf[5];
tx_buf[2] = (uint8_t)(length*2); // Data length
for(uint16_t i = 0; i < length; i++){ // Data
tx_buf[i*2+4] = holding_registers[adresseRegister+i];
tx_buf[i*2+3] = (holding_registers[adresseRegister+i] >> 8);
}
length*=2;
length+=3;
2023-03-10 14:13:26 +00:00
break;
case WRITE_SINGLE_REGISTER:
2023-03-14 14:25:45 +00:00
holding_registers[adresseRegister] = ((uint16_t)rx_buf[4] << 8) | rx_buf[5];
for (int i = 2; i <= 5; i++) {
tx_buf[i] = rx_buf[i];
length = i+1;
}
2023-03-10 14:13:26 +00:00
break;
}
}
2023-03-14 14:25:45 +00:00
2023-03-03 15:11:29 +00:00
rx_buf[0] = 0;
modbus_send(length);
2023-02-28 14:00:54 +00:00
}
2023-03-10 12:49:32 +00:00
void modbus_char_recvd(void)
2023-02-28 14:00:54 +00:00
{
2023-03-10 12:49:32 +00:00
rx_buf[recPtr++] = RCREG1;
TMR0_Reload();
TMR0_StartTimer();
2023-02-28 14:00:54 +00:00
}
void modbus_send(uint8_t length)
{
2023-03-14 14:25:45 +00:00
uint16_t crc = CRC16(tx_buf, length);
tx_buf[length] = crc;
tx_buf[length+1] = crc >> 8;
2023-02-28 14:00:54 +00:00
length += 2; // add 2 CRC bytes for total size
// For all the bytes to be transmitted
2023-03-14 14:25:45 +00:00
for (uint8_t i = 0; i < length; i++){
EUSART1_Write(tx_buf[i]);
}
2023-02-28 14:00:54 +00:00
}
void modbus_init(uint8_t address)
{
modbusAddress = address;
2023-03-14 14:25:45 +00:00
holding_registers[1] = address;
2023-03-10 12:49:32 +00:00
EUSART1_SetRxInterruptHandler(modbus_char_recvd);
TMR0_SetInterruptHandler(modbus_timer);
}