Ein Roboter mit bürstenlosem Antrieb, differenzial und NRF24L01 Funk. Großflächig gebaut um ein großes Solarpanel aufzunehmen. https://gitlab.informatik.hs-fulda.de/fdai5253/roboter
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.

31 lines
474 B

  1. /**
  2. * @file includes.h
  3. * Configuration defines for RF24/Linux
  4. */
  5. /**
  6. * Example of includes.h for RF24 Linux portability
  7. *
  8. * @defgroup Porting_Includes Porting: Includes
  9. *
  10. *
  11. * @{
  12. */
  13. #ifndef __RF24_INCLUDES_H__
  14. #define __RF24_INCLUDES_H__
  15. /**
  16. * Define a specific platform for this configuration
  17. */
  18. #define LITTLEWIRE
  19. /**
  20. * Load the correct configuration for this platform
  21. */
  22. #include "LittleWire/RF24_arch_config.h"
  23. #endif
  24. /*@}*/