blob: 96edc70c2a45ee8598945ee27572554e5d540cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* \ingroup pb_drv_rp2040
* \brief Puzzle bus driver setup
*
* This function must be called from a setup/init function to initialize the
* I2C peripherals used by this driver.
*/
void pb_setup();
#ifdef __cplusplus
}
#endif
#include "../../pb-mod.h"
|