Skip to content

Commit 0fa43ca

Browse files
authored
Merge pull request #13898 from RyoheiHagimoto/add_can_to_grmango
Adding CAN function to GR-MANGO
2 parents 660b964 + edbcb78 commit 0fa43ca

File tree

98 files changed

+8035
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+8035
-344
lines changed

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/PeripheralPins.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,16 @@ const PinMap PinMap_PWM[] = {
210210
{NC, NC, 0}
211211
};
212212

213+
/************CAN***************/
214+
const PinMap PinMap_CAN_RD[] = {
215+
{P1_1, CAN_0, 4},
216+
{P2_0, CAN_1, 4},
217+
{NC, NC, 0}
218+
};
219+
220+
const PinMap PinMap_CAN_TD[] = {
221+
{P1_3, CAN_0, 4},
222+
{P2_2, CAN_1, 4},
223+
{NC, NC, 0}
224+
};
225+

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/adc_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/bsc_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/ceu_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/cpg_iobitmask.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

@@ -172,8 +172,6 @@
172172
#define CPG_SYSCR3_RRAMWE3_SHIFT (3u)
173173
#define CPG_STBCR3_MSTP30 (0x01u)
174174
#define CPG_STBCR3_MSTP30_SHIFT (0u)
175-
#define CPG_STBCR3_MSTP31 (0x02u)
176-
#define CPG_STBCR3_MSTP31_SHIFT (1u)
177175
#define CPG_STBCR3_MSTP32 (0x04u)
178176
#define CPG_STBCR3_MSTP32_SHIFT (2u)
179177
#define CPG_STBCR3_MSTP33 (0x08u)

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/csi2link_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/dmac_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/drpk_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

targets/TARGET_RENESAS/TARGET_RZ_A2XX/TARGET_GR_MANGO/device/inc/iodefine/iobitmasks/drw_iobitmask.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
* you agree to the additional terms and conditions found by accessing the
1919
* following link:
2020
* http://www.renesas.com/disclaimer
21-
* Copyright (C) 2018-2020 Renesas Electronics Corporation. All rights reserved.
21+
* Copyright (C) 2019 Renesas Electronics Corporation. All rights reserved.
2222
*******************************************************************************/
23-
/* Copyright (c) 2018-2020 Renesas Electronics Corporation.
23+
/* Copyright (c) 2019-2020 Renesas Electronics Corporation.
2424
* SPDX-License-Identifier: Apache-2.0
2525
*
2626
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -36,7 +36,7 @@
3636
* limitations under the License.
3737
*/
3838
/*******************************************************************************
39-
* Rev: 2.00
39+
* Rev: 3.01
4040
* Description : IO bitmask header
4141
*******************************************************************************/
4242

0 commit comments

Comments
 (0)