Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
yuji-katori authored Sep 22, 2023
1 parent 96e9bed commit eebde39
Show file tree
Hide file tree
Showing 33 changed files with 17,038 additions and 81 deletions.
24 changes: 24 additions & 0 deletions mtkernel_3/device/rtc/sysdepend/tb_rx231/dev_rtc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
*----------------------------------------------------------------------
* micro T-Kernel 3.00.00
*
* Copyright (C) 2022 by Yuji Katori.
* This software is distributed under the T-License 2.2.
*----------------------------------------------------------------------
*/

/*
* dev_rtc.h
*/

#define RTC_OPEN( )
#define RTC_CLOSE( )
#define RTC_READ( ) dt->d_year = 100; \
dt->d_month = 1; \
dt->d_day = 1; \
dt->d_hour = 0; \
dt->d_min = 0; \
dt->d_sec = 0;

#define RTC_WRITE( )
#define RTC_INIT( )
24 changes: 24 additions & 0 deletions mtkernel_3/device/rtc/sysdepend/tb_rx65n/dev_rtc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
*----------------------------------------------------------------------
* micro T-Kernel 3.00.00
*
* Copyright (C) 2022 by Yuji Katori.
* This software is distributed under the T-License 2.2.
*----------------------------------------------------------------------
*/

/*
* dev_rtc.h
*/

#define RTC_OPEN( )
#define RTC_CLOSE( )
#define RTC_READ( ) dt->d_year = 100; \
dt->d_month = 1; \
dt->d_day = 1; \
dt->d_hour = 0; \
dt->d_min = 0; \
dt->d_sec = 0;

#define RTC_WRITE( )
#define RTC_INIT( )
24 changes: 24 additions & 0 deletions mtkernel_3/device/rtc/sysdepend/tb_rx66n/dev_rtc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
*----------------------------------------------------------------------
* micro T-Kernel 3.00.00
*
* Copyright (C) 2022 by Yuji Katori.
* This software is distributed under the T-License 2.2.
*----------------------------------------------------------------------
*/

/*
* dev_rtc.h
*/

#define RTC_OPEN( )
#define RTC_CLOSE( )
#define RTC_READ( ) dt->d_year = 100; \
dt->d_month = 1; \
dt->d_day = 1; \
dt->d_hour = 0; \
dt->d_min = 0; \
dt->d_sec = 0;

#define RTC_WRITE( )
#define RTC_INIT( )
25 changes: 25 additions & 0 deletions mtkernel_3/device/sd/sysdepend/tb_rx231/sd_config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
*----------------------------------------------------------------------
* micro T-Kernel 3.00.00
*
* Copyright (C) 2022 by Yuji Katori.
* This software is distributed under the T-License 2.2.
*----------------------------------------------------------------------
*/

/*
* sd_config.h
*/
#ifndef SD_CONFIG_H
#define SD_CONFIG_H

/* SD control task priority. */
#define SD_CFG_TASK_PRIORITY (3)

/* SD interrupt priority level. */
#define SD_CFG_INT_PRIORITY (8)

/* SD DMA channel. */
#define SD_CFG_DMA_CHANNEL (3)

#endif /* SD_CONFIG_H */
Loading

0 comments on commit eebde39

Please sign in to comment.