Platform-specific devices.
This commit is contained in:
parent
792056e325
commit
ae2e9f3677
16 changed files with 2399 additions and 0 deletions
99
platform/msb430/dev/cc1020.h
Normal file
99
platform/msb430/dev/cc1020.h
Normal file
|
@ -0,0 +1,99 @@
|
|||
/*
|
||||
Copyright 2006, Freie Universitaet Berlin. All rights reserved.
|
||||
|
||||
These sources were developed at the Freie Universität Berlin, Computer
|
||||
Systems and Telematics group.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
- Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
- Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
- Neither the name of Freie Universitaet Berlin (FUB) nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
This software is provided by FUB and the contributors on an "as is"
|
||||
basis, without any representations or warranties of any kind, express
|
||||
or implied including, but not limited to, representations or
|
||||
warranties of non-infringement, merchantability or fitness for a
|
||||
particular purpose. In no event shall FUB or contributors be liable
|
||||
for any direct, indirect, incidental, special, exemplary, or
|
||||
consequential damages (including, but not limited to, procurement of
|
||||
substitute goods or services; loss of use, data, or profits; or
|
||||
business interruption) however caused and on any theory of liability,
|
||||
whether in contract, strict liability, or tort (including negligence
|
||||
or otherwise) arising in any way out of the use of this software, even
|
||||
if advised of the possibility of such damage.
|
||||
|
||||
This implementation was developed by the CST group at the FUB.
|
||||
|
||||
For documentation and questions please use the web site
|
||||
http://scatterweb.mi.fu-berlin.de and the mailinglist
|
||||
scatterweb@lists.spline.inf.fu-berlin.de (subscription via the Website).
|
||||
Berlin, 2006
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file cc1020.h
|
||||
* @author FUB ScatterWeb Developers, Michael Baar, Nicolas Tsiftes
|
||||
*
|
||||
**/
|
||||
|
||||
#ifndef CC1020_H
|
||||
#define CC1020_H
|
||||
|
||||
#include "dev/radio.h"
|
||||
|
||||
enum cc1020_power_mode {
|
||||
CC1020_ALWAYS_ON
|
||||
};
|
||||
|
||||
extern const u8_t cc1020_config_19200[];
|
||||
extern const u8_t cc1020_config_115200[];
|
||||
|
||||
void cc1020_init(const u8_t* config);
|
||||
|
||||
int cc1020_on();
|
||||
|
||||
void cc1020_set_rx();
|
||||
|
||||
void cc1020_set_tx();
|
||||
|
||||
void cc1020_off();
|
||||
|
||||
void cc1020_set_receiver(void (* recv)(void));
|
||||
|
||||
void cc1020_set_power_mode(enum cc1020_power_mode mode);
|
||||
|
||||
/**
|
||||
* @brief Set output power amplifier power-
|
||||
*
|
||||
* For good values see CC1020 documentation.
|
||||
*/
|
||||
void cc1020_set_power(u8_t pa_power);
|
||||
|
||||
unsigned int cc1020_read(u8_t *buf, unsigned int bufsize);
|
||||
|
||||
/**
|
||||
* @brief Get RSSI of last received packet
|
||||
*
|
||||
* Best to call in packet handler
|
||||
*/
|
||||
u8_t cc1020_get_rssi();
|
||||
|
||||
unsigned int cc1020_send(u8_t* buf, unsigned int bufsize);
|
||||
|
||||
extern const struct radio_driver cc1020_driver;
|
||||
|
||||
PROCESS_NAME(cc1020_sender_process);
|
||||
|
||||
extern process_event_t cc1020_event;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue