projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the same as...
[pub/USBasp.git]
/
Projects
/
TempDataLogger
/
TempDataLogger.c
diff --git
a/Projects/TempDataLogger/TempDataLogger.c
b/Projects/TempDataLogger/TempDataLogger.c
index
15c3e6a
..
66f9335
100644
(file)
--- a/
Projects/TempDataLogger/TempDataLogger.c
+++ b/
Projects/TempDataLogger/TempDataLogger.c
@@
-44,7
+44,7
@@
USB_ClassInfo_MS_Device_t Disk_MS_Interface =
{
.Config =
{
{
.Config =
{
- .InterfaceNumber =
0
,
+ .InterfaceNumber =
INTERFACE_ID_MassStorage
,
.DataINEndpoint =
{
.Address = MASS_STORAGE_IN_EPADDR,
.DataINEndpoint =
{
.Address = MASS_STORAGE_IN_EPADDR,
@@
-72,7
+72,7
@@
USB_ClassInfo_HID_Device_t Generic_HID_Interface =
{
.Config =
{
{
.Config =
{
- .InterfaceNumber =
1
,
+ .InterfaceNumber =
INTERFACE_ID_HID
,
.ReportINEndpoint =
{
.Address = GENERIC_IN_EPADDR,
.ReportINEndpoint =
{
.Address = GENERIC_IN_EPADDR,
@@
-211,8
+211,8
@@
void SetupHardware(void)
RTC_Init();
/* 500ms logging interval timer configuration */
RTC_Init();
/* 500ms logging interval timer configuration */
- OCR1A = (((F_CPU /
1024
) / 2) - 1);
- TCCR1B = (1 << WGM12) | (1 << CS12)
| (1 << CS10)
;
+ OCR1A = (((F_CPU /
256
) / 2) - 1);
+ TCCR1B = (1 << WGM12) | (1 << CS12);
TIMSK1 = (1 << OCIE1A);
/* Check if the Dataflash is working, abort if not */
TIMSK1 = (1 << OCIE1A);
/* Check if the Dataflash is working, abort if not */