bbdcc1e623
- main.c: file-header comment describing the hardware and operation, logic split into named phases (sleep_until_interrupt, wake_peripheral_rails, take_counts_snapshot, send_wheel_counts_report, handle_minute_alarm, init_all_hardware); shared state renamed to say what it is and made static. - rfm69.c: reorganized into six labeled sections; cond_1/2/3 and hash scratch globals replaced by a reply_acknowledges() helper with clear locals; packet layout and every init register write documented. - LOG() macro (compiled out when DO_UART is off) replaces the #if DO_UART blocks that obscured the logic. - Drivers: file-header comments; named RTC_REG_*/RTC_ALM_MASK_BIT constants; EEPROM spool scheme documented; ADC_CHANNEL_BANDGAP named; repeated pin if/else helpers collapsed to SET_PIN_TO(). - Removed unused globals/buffers and commented-out code; ran clang-format with the project style. Register writes and radio protocol are byte-identical. Builds clean under -Wall -Wextra on gnu17 and c23; flash 13028 -> 12830 B, static RAM 1038 -> 999 B. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YVJKatfeMJjAmuH9KYiLuv
166 lines
4.1 KiB
C
166 lines
4.1 KiB
C
// Blocking TWI (I2C) master for the RTC and the NFC tag.
|
|
|
|
#include "i2c.h"
|
|
#include <util/twi.h>
|
|
|
|
// Every one of these loops used to spin forever. The peripheral rail is cut
|
|
// before sleeping, so a device that is slow or absent on wake would otherwise
|
|
// hang the firmware with no watchdog reset armed.
|
|
static bool i2c_wait_twint(void)
|
|
{
|
|
for (uint16_t attempts = 0; attempts < I2C_TIMEOUT_LOOPS; attempts++) {
|
|
if (TWCR & (1 << TWINT)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void i2c_init(void)
|
|
{
|
|
// Set SCL and SDA as inputs (automatically done by TWI hardware)
|
|
TWSR = 0; // Prescaler = 1
|
|
TWBR = (uint8_t)((F_CPU / F_SCL - 16) / 2); // Set bitrate register
|
|
TWCR = (1 << TWEN);
|
|
}
|
|
|
|
// Start i2c communication
|
|
uint8_t i2c_start(uint8_t address)
|
|
{
|
|
TWCR = (1 << TWSTA) | (1 << TWINT) | (1 << TWEN); // Send START condition
|
|
if (!i2c_wait_twint())
|
|
return 1;
|
|
TWDR = address; // Load address into data register
|
|
|
|
TWCR = (1 << TWINT) | (1 << TWEN); // Send address
|
|
if (!i2c_wait_twint())
|
|
return 1;
|
|
uint8_t status = TWSR & 0xF8;
|
|
if (status != 0x18 && status != 0x40)
|
|
return 1;
|
|
return 0;
|
|
// return (TWSR & 0xF8); // Return the status code (check if ACK
|
|
// received)
|
|
}
|
|
|
|
uint8_t write_one_byte(uint8_t device_addr, uint8_t register_addr, uint8_t data)
|
|
{
|
|
return write_n_bytes(device_addr, register_addr, &data, 1);
|
|
}
|
|
|
|
uint8_t write_n_bytes(uint8_t device_addr, uint8_t register_addr, uint8_t* data, uint8_t n_bytes)
|
|
{
|
|
I2C_START_WRITE(device_addr);
|
|
if (i2c_write(register_addr)) {
|
|
i2c_stop();
|
|
return 1;
|
|
}
|
|
for (uint8_t i = 0; i < n_bytes; i++) {
|
|
if (i2c_write(data[i])) {
|
|
i2c_stop();
|
|
return 1;
|
|
}
|
|
}
|
|
i2c_stop();
|
|
return 0;
|
|
}
|
|
|
|
uint8_t read_one_byte_no_err_register(uint8_t device_addr, uint8_t register_addr)
|
|
{
|
|
uint8_t data;
|
|
read_one_byte(device_addr, register_addr, &data);
|
|
return data;
|
|
}
|
|
|
|
uint8_t read_one_byte(uint8_t device_addr, uint8_t register_addr, uint8_t* data)
|
|
{
|
|
return read_n_bytes(device_addr, register_addr, data, 1);
|
|
}
|
|
|
|
uint8_t read_n_bytes(uint8_t device_addr, uint8_t register_addr, uint8_t* data, uint8_t n_bytes)
|
|
{
|
|
|
|
I2C_START_WRITE(device_addr);
|
|
i2c_write(register_addr);
|
|
I2C_START_READ(device_addr);
|
|
|
|
for (uint8_t i = 0; i < (n_bytes - 1); i++) {
|
|
data[i] = i2c_read_ack();
|
|
}
|
|
|
|
data[n_bytes - 1] = i2c_read_nack();
|
|
i2c_stop();
|
|
|
|
return 0;
|
|
}
|
|
|
|
uint8_t read_one_byte_16bit_addr_no_err_register(uint8_t device_addr, uint16_t register_addr)
|
|
{
|
|
uint8_t data;
|
|
read_one_byte_16bit_addr(device_addr, register_addr, &data);
|
|
return data;
|
|
}
|
|
|
|
uint8_t read_one_byte_16bit_addr(uint8_t device_addr, uint16_t register_addr, uint8_t* data)
|
|
{
|
|
return read_n_bytes_16bit_addr(device_addr, register_addr, data, 1);
|
|
}
|
|
|
|
uint8_t
|
|
read_n_bytes_16bit_addr(uint8_t device_addr, uint16_t register_addr, uint8_t* data, uint8_t n_bytes)
|
|
{
|
|
|
|
I2C_START_WRITE(device_addr);
|
|
// i2c_write(0xAE);
|
|
i2c_write(register_addr >> 8);
|
|
i2c_write(register_addr & 0xFF);
|
|
I2C_START_READ(device_addr);
|
|
|
|
for (uint8_t i = 0; i < (n_bytes - 1); i++) {
|
|
data[i] = i2c_read_ack();
|
|
}
|
|
|
|
data[n_bytes - 1] = i2c_read_nack();
|
|
i2c_stop();
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Stop i2c communication
|
|
void i2c_stop(void)
|
|
{
|
|
TWCR = (1 << TWSTO) | (1 << TWINT) | (1 << TWEN); // Send STOP condition
|
|
for (uint16_t attempts = 0; attempts < I2C_TIMEOUT_LOOPS; attempts++) {
|
|
if (!(TWCR & (1 << TWSTO))) {
|
|
return; // STOP complete
|
|
}
|
|
}
|
|
}
|
|
|
|
uint8_t i2c_read_ack(void)
|
|
{
|
|
TWCR = (1 << TWEN) | (1 << TWINT) | (1 << TWEA);
|
|
if (!i2c_wait_twint())
|
|
return 0xFF;
|
|
return TWDR;
|
|
}
|
|
|
|
uint8_t i2c_write(uint8_t data)
|
|
{
|
|
// Load data into TWDR
|
|
TWDR = data;
|
|
TWCR = (1 << TWEN) | (1 << TWINT);
|
|
if (!i2c_wait_twint())
|
|
return 1;
|
|
if ((TWSR & 0xF8) != TW_MT_DATA_ACK)
|
|
return 1; // Check ACK
|
|
return 0;
|
|
}
|
|
|
|
uint8_t i2c_read_nack(void)
|
|
{
|
|
TWCR = (1 << TWEN) | (1 << TWINT);
|
|
if (!i2c_wait_twint())
|
|
return 0xFF;
|
|
return TWDR;
|
|
} |