blob: a825905764bfb8bba18462c7c1fa33c6def367a5 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#include <stdio.h>
#include <time.h>
#include <plc4c/data.h>
#include <plc4c/spi/evaluation_helper.h>
#include <plc4c/driver_modbus.h>
#include "data_item.h"
// Parse function.
plc4c_return_code plc4c_modbus_read_write_data_item_parse(plc4c_spi_read_buffer* io, uint8_t dataType, uint8_t numberOfValues, plc4c_data** data_item) {
uint16_t startPos = plc4c_spi_read_get_pos(io);
uint16_t curPos;
plc4c_return_code _res = OK;
if((dataType == 1) && (numberOfValues == 1)) { /* Boolean */
// Reserved Field (Compartmentalized so the "reserved" variable can't leak)
{
unsigned int _reserved = 0;
_res = plc4c_spi_read_unsigned_byte(io, 7, (uint8_t*) &_reserved);
if(_res != OK) {
return _res;
}
if(_reserved != 0x00) {
printf("Expected constant value '%d' but got '%d' for reserved field.", 0x00, _reserved);
}
}
// Simple Field (value)
bool value = false;
_res = plc4c_spi_read_bit(io, (bool*) &value);
if(_res != OK) {
return _res;
}
*data_item = plc4c_data_create_bool_data(value);
} else
if(dataType == 1) { /* List */
// Array field (value)
} else
if((dataType == 2) && (numberOfValues == 1)) { /* Integer */
// Simple Field (value)
int16_t value = 0;
_res = plc4c_spi_read_signed_short(io, 16, (int16_t*) &value);
if(_res != OK) {
return _res;
}
*data_item = plc4c_data_create_int16_t_data(value);
} else
if(dataType == 2) { /* List */
// Array field (value)
}
return OK;
}
plc4c_return_code plc4c_modbus_read_write_data_item_serialize(plc4c_spi_write_buffer* io, plc4c_data** data_item) {
plc4c_return_code _res = OK;
return OK;
}
uint16_t plc4c_modbus_read_write_data_item_length_in_bytes(plc4c_data* data_item) {
return plc4c_modbus_read_write_data_item_length_in_bits(data_item) / 8;
}
uint16_t plc4c_modbus_read_write_data_item_length_in_bits(plc4c_data* data_item) {
uint16_t lengthInBits = 0;
return lengthInBits;
}