1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/notrynohigh-BabyOS

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
b_mod_utc.c 4 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
notrynohigh Отправлено 4 лет назад cca481d
/**
*!
* \file b_mod_utc.c
* \version v0.0.1
* \date 2019/06/05
* \author Bean(notrynohigh@outlook.com)
*******************************************************************************
* @attention
*
* Copyright (c) 2019 Bean
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*******************************************************************************
*/
/*Includes ----------------------------------------------*/
#include "modules/inc/b_mod_utc.h"
#if _UTC2000_ENABLE
/**
* \addtogroup BABYOS
* \{
*/
/**
* \addtogroup MODULES
* \{
*/
/**
* \addtogroup UTC
* \{
*/
/**
* \defgroup UTC_Private_TypesDefinitions
* \{
*/
/**
* \}
*/
/**
* \defgroup UTC_Private_Defines
* \{
*/
/**
* \}
*/
/**
* \defgroup UTC_Private_Macros
* \{
*/
/**
* \}
*/
/**
* \defgroup UTC_Private_Variables
* \{
*/
/**
* \}
*/
/**
* \defgroup UTC_Private_FunctionPrototypes
* \{
*/
/**
* \}
*/
/**
* \defgroup UTC_Private_Functions
* \{
*/
static uint8_t _bUTC_CalendarMonthDays(uint8_t lpyr, uint8_t month)
{
uint8_t days = 31, i = 0;
uint8_t table[7] = {1, 3, 5, 7, 8, 10, 12};
if (month < 1 || month > 12)
{
return 0;
}
if (month == 2)
{
days = (28 + lpyr);
}
else
{
for (i = 0; i < 7; i++)
{
if (month == table[i])
{
days = 31;
break;
}
}
if (i >= 7)
{
days = 30;
}
}
return days;
}
/**
* \}
*/
/**
* \addtogroup UTC_Exported_Functions
* \{
*/
/**
* \brief UTC to date struct \ref bUTC_DateTime_t
*/
void bUTC2Struct(bUTC_DateTime_t *tm, bUTC_t utc)
{
uint32_t sec_in_day = utc % DAY;
tm->second = sec_in_day % 60;
tm->minute = (sec_in_day % 3600) / 60;
tm->hour = sec_in_day / 3600;
uint32_t days = utc / DAY;
tm->week = (((days % 7) + 5) % 7) + 1;
tm->year = BEGYEAR;
while (days >= YEAR_DAYS(tm->year))
{
days -= YEAR_DAYS(tm->year);
tm->year++;
}
tm->month = 1;
while (days >= _bUTC_CalendarMonthDays(YEAR_CHECK(tm->year), tm->month))
{
days -= _bUTC_CalendarMonthDays(YEAR_CHECK(tm->year), tm->month);
tm->month++;
}
tm->day = days + 1;
}
/**
* \brief Calculate UTC
*/
bUTC_t bStruct2UTC(bUTC_DateTime_t tm)
{
uint32_t seconds;
if (!IS_TIME_VALID(tm))
{
return 0;
}
seconds = (((tm.hour * 60) + tm.minute) * 60) + tm.second;
uint32_t days = tm.day - 1;
int8_t month = tm.month;
month--;
while (month > 0)
{
days += _bUTC_CalendarMonthDays(YEAR_CHECK(tm.year), month);
month--;
}
uint32_t year = (tm.year > 0) ? (tm.year - 1) : 0;
while (year >= BEGYEAR)
{
days += YEAR_DAYS(year);
year--;
}
seconds += (days * DAY);
return seconds;
}
/**
* \}
*/
/**
* \}
*/
/**
* \}
*/
/**
* \}
*/
#endif
/************************ Copyright (c) 2019 Bean *****END OF FILE****/

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/notrynohigh-BabyOS.git
git@gitlife.ru:oschina-mirror/notrynohigh-BabyOS.git
oschina-mirror
notrynohigh-BabyOS
notrynohigh-BabyOS
V7.0.0