ZuluSCSI_log_trace.h 239 B

12345678910
  1. // SCSI trace logging
  2. #pragma once
  3. #include <stdint.h>
  4. // Called from scsiPhy.cpp
  5. void scsiLogPhaseChange(int new_phase);
  6. void scsiLogDataIn(const uint8_t *buf, uint32_t length);
  7. void scsiLogDataOut(const uint8_t *buf, uint32_t length);