MAX32672 Peripheral Driver API
Peripheral Driver API for the MAX32672
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
msr.h
1/******************************************************************************
2 *
3 * Copyright (C) 2022-2023 Maxim Integrated Products, Inc. (now owned by
4 * Analog Devices, Inc.),
5 * Copyright (C) 2023-2024 Analog Devices, Inc.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 ******************************************************************************/
20
31#ifndef LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32672_MSR_H_
32#define LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32672_MSR_H_
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/***** Definitions *****/
39
41#ifndef MSR_NUM_TRACKS
42#define MSR_NUM_TRACKS 3
43#endif
44
45#define MSR_MAX_SAMPLES 1536
46
47// Assuming nominal bit density of 210 bpi and 3.375 inch length
48#define MSR_MAX_RAW_LEN_BITS (709)
49#define MSR_MAX_RAW_LEN_BYTES ((MSR_MAX_RAW_LEN_BITS + 7) / 8)
50#define MSR_MAX_RAW_LEN_HALFWORDS ((MSR_MAX_RAW_LEN_BITS + 15) / 16)
51
53#define MSR_MAX_DEC_LEN (MSR_MAX_RAW_LEN_BITS / 5)
54
56#define MSR_FORWARD 0
58#define MSR_REVERSE 1
59
61#define MSR_ERR_OK 0x00
62#define MSR_ERR_BAD_LEN 0x01
63#define MSR_ERR_START_SEN 0x02
64#define MSR_ERR_END_SEN 0x04
65#define MSR_ERR_OUTLIER 0x08
66#define MSR_ERR_PARAM 0x10
67#define MSR_ERR_LRC 0x40
68#define MSR_ERR_PARITY 0x80
69
71typedef struct {
72 uint8_t error_code;
73 uint8_t parity_errs;
74 uint8_t lrc;
77 uint8_t direction;
78 uint8_t len;
80 uint16_t speed;
81 uint8_t data[MSR_MAX_DEC_LEN];
83
85typedef union {
86 struct {
87 uint16_t time : 9;
88 uint16_t amp : 7;
89 };
90 uint16_t value;
92
94typedef struct {
95 uint16_t len;
96 msr_sample_t data[MSR_MAX_SAMPLES];
98
99/***** Function Prototypes *****/
100
105int msr_init(void);
106
111void msr_init_track(unsigned int track);
112
118void msr_enable(void);
119
123void msr_disable(void);
124
132int msr_task(void);
133
141unsigned int msr_track_decode(unsigned int track, msr_decoded_track_t *decoded_track);
142
151void msr_set_complete_callback(void (*func)(void));
152
160unsigned int mcr_get_track_samples(unsigned int track, msr_samples_t *samples);
161
162#ifdef __cplusplus
163}
164#endif
165
166#endif // LIBRARIES_PERIPHDRIVERS_INCLUDE_MAX32672_MSR_H_
Structure to contain result of a track decode.
Definition: msr.h:71
uint8_t lrc
Definition: msr.h:74
uint16_t speed
the sentinels or the LRC.
Definition: msr.h:80
uint8_t error_code
Error code value.
Definition: msr.h:72
uint8_t len
Definition: msr.h:78
uint8_t parity_errs
Number of characters with parity errors.
Definition: msr.h:73
uint8_t direction
Swipe direction determined from decode.
Definition: msr.h:77
Structure to contain raw MSR samples.
Definition: msr.h:94
MSR sample fields.
Definition: msr.h:85