mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
/**
|
|
* \file simavr.c
|
|
*
|
|
* This file describdes traces for simavr to collect. The metadata is stored in
|
|
* the .mmcu section of the compiled ELF binary.
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <simavr/avr/avr_mcu_section.h>
|
|
#include "pins.h"
|
|
|
|
extern uint8_t state;
|
|
|
|
/** Trace data to collect.
|
|
*
|
|
* We collect each bit of PORTB (inputs and outputs) separately. We also keep
|
|
* track of the global state variable.
|
|
*/
|
|
const struct avr_mmcu_vcd_trace_t _mytrace[] _MMCU_ = {
|
|
{ AVR_MCU_VCD_SYMBOL("PIN_POWER"), .mask = (1<<PIN_POWER), .what = (void*)&PINB, },
|
|
{ AVR_MCU_VCD_SYMBOL("PIN_USB"), .mask = (1<<PIN_USB), .what = (void*)&PINB, },
|
|
{ AVR_MCU_VCD_SYMBOL("PIN_EN"), .mask = (1<<PIN_EN), .what = (void*)&PORTB, },
|
|
{ AVR_MCU_VCD_SYMBOL("PIN_SHUTDOWN"), .mask = (1<<PIN_SHUTDOWN), .what = (void*)&PORTB, },
|
|
{ AVR_MCU_VCD_SYMBOL("PIN_BOOT"), .mask = (1<<PIN_BOOT), .what = (void*)&PINB, },
|
|
{ AVR_MCU_VCD_SYMBOL("STATE"), .what = (void*)&state, },
|
|
};
|