mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:39:21 +02:00
b0c15b7e7c
- include/atrf.h (atrf_set_clkm), lib/atrf.c (atrf_set_clkm): set or disable CLKM - lib/driver.h (atrf_set_clkm_generic), lib/atrf.c (atrf_set_clkm_generic): generic function to set CLKM without restrictions - lib/driver.h (struct atrf_driver): added driver operation "set_clkm" to set CLKM - lib/atusb.c (atusb_set_clkm, atusb_driver): restrict CLKM on ATmega32U2 boards - atrf-txrx/atrf-txrx.c (init_txrx): use atrf_set_clkm to set CLKM - atrf-txrx/atrf-txrx.c (init_txrx, main): pass CLKM frequency in MHz instead of code point
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*
|
|
* lib/driver.h - ATRF driver API
|
|
*
|
|
* Written 2010-2011 by Werner Almesberger
|
|
* Copyright 2010-2011 Werner Almesberger
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
|
|
#ifndef DRIVER_H
|
|
#define DRIVER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
struct atrf_driver {
|
|
const char *name;
|
|
void *(*open)(void);
|
|
void (*close)(void *dsc);
|
|
int (*error)(void *dsc);
|
|
int (*clear_error)(void *dsc);
|
|
void (*reset)(void *dsc);
|
|
void (*reset_rf)(void *dsc);
|
|
void (*test_mode)(void *dsc);
|
|
int (*set_clkm)(void *dsc, int mhz);
|
|
void (*reg_write)(void *dsc, uint8_t reg, uint8_t value);
|
|
uint8_t (*reg_read)(void *dsc, uint8_t reg);
|
|
void (*buf_write)(void *dsc, const void *buf, int size);
|
|
int (*buf_read)(void *dsc, void *buf, int size);
|
|
int (*interrupt)(void *dsc);
|
|
};
|
|
|
|
|
|
int atrf_set_clkm_generic(
|
|
void (*reg_write)(void *dsc, uint8_t reg, uint8_t value),
|
|
void *handle, int mhz);
|
|
|
|
#endif /* !DRIVER_H */
|