PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

aci_setup.h 332B

il y a 3 ans
123456789101112
  1. #ifndef H_ACI_SETUP
  2. #define H_ACI_SETUP
  3. #define ACI_CMD_Q_SIZE 16
  4. /**
  5. Do the ACI setup by sending the setup messages generated by the nRFgo studio to the nRF8001.
  6. After all the setup messages are sent. The nRF8001 will send a Device Started Event (Mode = STANDBY)
  7. */
  8. aci_status_code_t do_aci_setup(aci_state_t *aci_stat);
  9. #endif