PDM represents a PDM device
| 37 | |
| 38 | // PDM represents a PDM device |
| 39 | type PDM struct { |
| 40 | device *nrf.PDM_Type |
| 41 | defaultBuffer int16 |
| 42 | } |
| 43 | |
| 44 | // Configure is intended to set up the PDM interface prior to use. |
| 45 | func (pdm *PDM) Configure(config PDMConfig) error { |
nothing calls this directly
no outgoing calls
no test coverage detected