You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
299 B

/** @file piezo.c
@author M. P. Hayes, UCECE
@date 12 March 2003
@brief
*/
#include "piezo.h"
/* Create a new PIEZO device. */
piezo_t
piezo_init (const piezo_cfg_t *cfg)
{
/* Configure pio as output. */
pio_config_set (cfg->pio, PIO_OUTPUT_LOW);
return cfg;
}