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.

24 lines
710 B

  1. #############################################################################
  2. #
  3. # Makefile for librf24 examples on Raspberry Pi
  4. #
  5. # License: GPL (General Public License)
  6. # Author: gnulnulf <arco@appeltaart.mine.nu>
  7. # Date: 2013/02/07 (version 1.0)
  8. #
  9. # Description:
  10. # ------------
  11. # use make all and make install to install the examples
  12. # You can change the install directory by editing the prefix line
  13. #
  14. ifeq ($(wildcard ../../Makefile.inc), )
  15. $(error Configuration not found. Run ./configure first)
  16. endif
  17. include ../../Makefile.inc
  18. # define all programs
  19. PROGRAMS = gettingstarted_call_response_int gettingstarted_call_response_int2 transfer_interrupt pingpair_dyn_int
  20. include ../Makefile.examples