1.copyright 2024。

This commit is contained in:
MacRsh
2024-01-02 00:02:48 +08:00
parent 063534ad34
commit 1ce69d3524
58 changed files with 83 additions and 83 deletions

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-06 MacRsh First version
*/
#include "include/device/adc.h"
#include "include/device/mr_adc.h"
#ifdef MR_USING_ADC

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-22 MacRsh First version
*/
#include "include/device/can.h"
#include "include/device/mr_can.h"
#ifdef MR_USING_CAN

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-08 MacRsh First version
*/
#include "include/device/dac.h"
#include "include/device/mr_dac.h"
#ifdef MR_USING_DAC

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-09 MacRsh First version
*/
#include "include/device/i2c.h"
#include "include/device/mr_i2c.h"
#ifdef MR_USING_I2C

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-08 MacRsh First version
*/
#include "include/device/pin.h"
#include "include/device/mr_pin.h"
#ifdef MR_USING_PIN

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-12-10 MacRsh First version
*/
#include "include/device/pwm.h"
#include "include/device/mr_pwm.h"
#ifdef MR_USING_PWM

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-10-20 MacRsh First version
*/
#include "include/device/serial.h"
#include "include/device/mr_serial.h"
#ifdef MR_USING_SERIAL

View File

@@ -1,17 +1,17 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-12-13 MacRsh First version
*/
#include "include/device/soft_i2c.h"
#include "include/device/mr_soft_i2c.h"
#if defined(MR_USING_I2C) && defined(MR_USING_SOFT_I2C)
#ifdef MR_USING_PIN
#include "include/device/pin.h"
#include "include/device/mr_pin.h"
#else
#warning "Please define MR_USING_PIN. Otherwise Soft-I2C will not work."
#endif /* MR_USING_PIN */

View File

@@ -1,17 +1,17 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-01 MacRsh First version
*/
#include "include/device/spi.h"
#include "include/device/mr_spi.h"
#ifdef MR_USING_SPI
#ifdef MR_USING_PIN
#include "include/device/pin.h"
#include "include/device/mr_pin.h"
#else
#warning "Please define MR_USING_PIN. Otherwise SPI-CS will not work."
#endif /* MR_USING_PIN */

View File

@@ -1,12 +1,12 @@
/*
* @copyright (c) 2023, MR Development Team
* @copyright (c) 2023-2024, MR Development Team
*
* @license SPDX-License-Identifier: Apache-2.0
*
* @date 2023-11-15 MacRsh First version
*/
#include "include/device/timer.h"
#include "include/device/mr_timer.h"
#ifdef MR_USING_TIMER