cc2520.h 620 B

1234567891011121314151617181920212223242526
  1. /* Header file for cc2520 radio driver
  2. *
  3. * Copyright (C) 2014 Varka Bhadram <varkab@cdac.in>
  4. * Md.Jamal Mohiuddin <mjmohiuddin@cdac.in>
  5. * P Sowjanya <sowjanyap@cdac.in>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. */
  13. #ifndef __CC2520_H
  14. #define __CC2520_H
  15. struct cc2520_platform_data {
  16. int fifo;
  17. int fifop;
  18. int cca;
  19. int sfd;
  20. int reset;
  21. int vreg;
  22. };
  23. #endif