1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
31
32
37
38
39
44
45
46
53
54
55
56
57
58
59
/* ... */
#ifndef _HARDWARE_XOSC_H
#define _HARDWARE_XOSC_H
#include "pico.h"
#include "hardware/structs/xosc.h"
#ifndef PICO_XOSC_STARTUP_DELAY_MULTIPLIER
#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 1
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
/* ... */
void xosc_init(void);
/* ... */
void xosc_disable(void);
/* ... */
void xosc_dormant(void);
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif