Loading...
Searching...
No Matches
max31343_params.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2026 Technische Universität Hamburg
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
19
20#include "board.h"
21#include "periph/i2c.h"
22#include "max31343.h"
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28#ifndef MAX31343_PARAM_I2C
29# define MAX31343_PARAM_I2C I2C_DEV(0)
30#endif
31
32#ifndef MAX31343_PARAMS
33# define MAX31343_PARAMS { \
34 .i2c = MAX31343_PARAM_I2C, \
35}
36#endif
37
44
46
47#ifdef __cplusplus
48}
49#endif
static const max31343_params_t max31343_params[]
Default parameter set for MAX31343 devices.
#define MAX31343_PARAMS
Default parameter set.
Low-level I2C peripheral driver interface definition.
Driver interface for the MAX31343 I2C real-time clock.
Configuration parameters for MAX31343 initialization.
Definition max31343.h:106