Keyboard firmwares for Atmel AVR and Cortex-M
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.

TempDataLogger.h 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2014.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2014 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaims all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. /** \file
  27. *
  28. * Header file for TempDataLogger.c.
  29. */
  30. #ifndef _TEMP_DATALOGGER_H_
  31. #define _TEMP_DATALOGGER_H_
  32. /* Includes: */
  33. #include <avr/io.h>
  34. #include <avr/wdt.h>
  35. #include <avr/power.h>
  36. #include <avr/interrupt.h>
  37. #include <stdio.h>
  38. #include "Descriptors.h"
  39. #include "Lib/SCSI.h"
  40. #include "Lib/DataflashManager.h"
  41. #include "Lib/FATFs/ff.h"
  42. #include "Lib/RTC.h"
  43. #include "Config/AppConfig.h"
  44. #include <LUFA/Drivers/Board/LEDs.h>
  45. #include <LUFA/Drivers/Board/Temperature.h>
  46. #include <LUFA/Drivers/Peripheral/ADC.h>
  47. #include <LUFA/Drivers/USB/USB.h>
  48. #include <LUFA/Platform/Platform.h>
  49. /* Macros: */
  50. /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */
  51. #define LEDMASK_USB_NOTREADY LEDS_LED1
  52. /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */
  53. #define LEDMASK_USB_ENUMERATING (LEDS_LED2 | LEDS_LED3)
  54. /** LED mask for the library LED driver, to indicate that the USB interface is ready. */
  55. #define LEDMASK_USB_READY (LEDS_LED2 | LEDS_LED4)
  56. /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */
  57. #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)
  58. /** LED mask for the library LED driver, to indicate that the USB interface is busy. */
  59. #define LEDMASK_USB_BUSY LEDS_LED2
  60. /** Default log interval when the EEPROM is blank, in 500ms ticks. */
  61. #define DEFAULT_LOG_INTERVAL 10
  62. /** Indicates if the disk is write protected or not. */
  63. #define DISK_READ_ONLY false
  64. /* Type Defines: */
  65. typedef struct
  66. {
  67. TimeDate_t TimeDate;
  68. uint8_t LogInterval500MS;
  69. } Device_Report_t;
  70. /* Function Prototypes: */
  71. void SetupHardware(void);
  72. void OpenLogFile(void);
  73. void CloseLogFile(void);
  74. void EVENT_USB_Device_Connect(void);
  75. void EVENT_USB_Device_Disconnect(void);
  76. void EVENT_USB_Device_ConfigurationChanged(void);
  77. void EVENT_USB_Device_ControlRequest(void);
  78. bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo);
  79. bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo,
  80. uint8_t* const ReportID,
  81. const uint8_t ReportType,
  82. void* ReportData,
  83. uint16_t* const ReportSize);
  84. void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo,
  85. const uint8_t ReportID,
  86. const uint8_t ReportType,
  87. const void* ReportData,
  88. const uint16_t ReportSize);
  89. #endif