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.
 
 
 
 

38 regels
1.2 KiB

  1. /*******************************************************************************
  2. * *
  3. * Copyright 2010 Rheinmetall Canada Inc. *
  4. * *
  5. * No part of this document may be reproduced, stored in *
  6. * a retrieval system, or transmitted, in any form or by any means, *
  7. * electronic, mechanical, photocopying, recording, or otherwise, *
  8. * without the prior written permission of Rheinmetall Canada Inc. *
  9. * *
  10. *******************************************************************************/
  11. /*
  12. Description:
  13. This is a template file for standard C header file.
  14. */
  15. /* ************************************************************************** */
  16. /* Revision:
  17. ### YYYYMMDD Initial, Bug Identification
  18. Change description.
  19. */
  20. #ifndef WATCHDOG_H
  21. #define WATCHDOG_H
  22. void InitWatchdog(void);
  23. void EnableWatchdog(void);
  24. void DisableWatchdog(void);
  25. void KickWatchdog(void);
  26. #endif
  27. //EOF