2
0

cmd_system.h 482 B

123456789101112131415161718192021
  1. /* Console example — various system commands
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #pragma once
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. // Register system functions
  12. void register_system();
  13. void guided_factory();
  14. #ifdef __cplusplus
  15. }
  16. #endif