Fix comment alignment

This commit is contained in:
Victor 2019-07-10 23:22:51 +01:00
parent 87e300588b
commit 868469db0d

View file

@ -697,7 +697,7 @@ void SniffHitag(void) {
StopTicks();
// int frame_count;
// int frame_count;
int response;
int overflow;
bool rising_edge;
@ -755,7 +755,7 @@ void SniffHitag(void) {
// Reset the received frame, frame count and timing info
memset(rx, 0x00, sizeof(rx));
// frame_count = 0;
// frame_count = 0;
response = 0;
overflow = 0;
reader_frame = false;
@ -862,7 +862,7 @@ void SniffHitag(void) {
// Check if frame was captured
if (rxlen > 0) {
// frame_count++;
// frame_count++;
LogTrace(rx, nbytes(rxlen), response, 0, NULL, reader_frame);
// Check if we recognize a valid authentication attempt
@ -912,7 +912,7 @@ void SimulateHitagTag(bool tag_mem_supplied, uint8_t *data) {
StopTicks();
// int frame_count = 0;
// int frame_count = 0;
int response = 0, overflow = 0;
uint8_t rx[HITAG_FRAME_LEN];
size_t rxlen = 0;
@ -1030,7 +1030,7 @@ void SimulateHitagTag(bool tag_mem_supplied, uint8_t *data) {
// Check if frame was captured
if (rxlen > 4) {
// frame_count++;
// frame_count++;
LogTrace(rx, nbytes(rxlen), response, response, NULL, true);
// Disable timer 1 with external trigger to avoid triggers during our own modulation
@ -1086,7 +1086,7 @@ void ReaderHitag(hitag_function htf, hitag_data *htd) {
StopTicks();
// int frame_count = 0;
// int frame_count = 0;
int response = 0;
uint8_t rx[HITAG_FRAME_LEN];
size_t rxlen = 0;
@ -1222,7 +1222,7 @@ void ReaderHitag(hitag_function htf, hitag_data *htd) {
// Check if frame was captured and store it
if (rxlen > 0) {
// frame_count++;
// frame_count++;
LogTrace(rx, nbytes(rxlen), response, response, NULL, false);
}
@ -1278,7 +1278,7 @@ void ReaderHitag(hitag_function htf, hitag_data *htd) {
// Add transmitted frame to total count
if (txlen > 0) {
// frame_count++;
// frame_count++;
LogTrace(tx, nbytes(txlen), HITAG_T_WAIT_2, HITAG_T_WAIT_2, NULL, true);
}
@ -1372,7 +1372,7 @@ void WriterHitag(hitag_function htf, hitag_data *htd, int page) {
StopTicks();
// int frame_count = 0;
// int frame_count = 0;
int response = 0;
uint8_t rx[HITAG_FRAME_LEN];
size_t rxlen = 0;
@ -1493,7 +1493,7 @@ void WriterHitag(hitag_function htf, hitag_data *htd, int page) {
// Check if frame was captured and store it
if (rxlen > 0) {
// frame_count++;
// frame_count++;
LogTrace(rx, nbytes(rxlen), response, response, NULL, false);
}
@ -1534,7 +1534,7 @@ void WriterHitag(hitag_function htf, hitag_data *htd, int page) {
// Add transmitted frame to total count
if (txlen > 0) {
// frame_count++;
// frame_count++;
LogTrace(tx, nbytes(txlen), HITAG_T_WAIT_2, HITAG_T_WAIT_2, NULL, true);
}