Skip to content

Commit 4d4bae9

Browse files
author
Jenny Plunkett
authored
Merge pull request ARMmbed#63 from yennster/jenny
Fix files to allow for building with IAR IDE (and export)
2 parents 87ef66c + ef11773 commit 4d4bae9

File tree

14 files changed

+84
-78
lines changed

14 files changed

+84
-78
lines changed

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/device/CC3220SF_LAUNCHXL.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
#include <ti/devices/cc32xx/driverlib/gpio.h>
5151
#include <ti/devices/cc32xx/driverlib/pin.h>
5252
#include <ti/devices/cc32xx/driverlib/prcm.h>
53-
#include <ti/devices/cc32xx/driverlib/spi.h>
53+
#include <ti/devices/cc32xx/driverlib/ti_spi_driverlib.h>
5454
#include <ti/devices/cc32xx/driverlib/sdhost.h>
55-
#include <ti/devices/cc32xx/driverlib/timer.h>
55+
#include <ti/devices/cc32xx/driverlib/ti_timer.h>
5656
#include <ti/devices/cc32xx/driverlib/uart.h>
5757
#include <ti/devices/cc32xx/driverlib/udma.h>
5858
#include <ti/devices/cc32xx/driverlib/interrupt.h>

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/pwmout_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <ti/devices/cc32xx/driverlib/rom_map.h>
2929
#include <ti/devices/cc32xx/driverlib/gpio.h>
3030
#include <ti/devices/cc32xx/driverlib/pin.h>
31-
#include <ti/devices/cc32xx/driverlib/timer.h>
31+
#include <ti/devices/cc32xx/driverlib/ti_timer.h>
3232

3333
static const uint32_t timerBaseAddresses[4] = {
3434
CC3220SF_TIMERA0_BASE,

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/spi_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "ti/devices/cc32xx/inc/hw_types.h"
2424
#include "ti/devices/cc32xx/driverlib/pin.h"
2525
#include "ti/devices/cc32xx/driverlib/rom_map.h"
26-
#include "ti/devices/cc32xx/driverlib/spi.h"
26+
#include "ti/devices/cc32xx/driverlib/ti_spi_driverlib.h"
2727
#include "ti/devices/cc32xx/driverlib/prcm.h"
2828

2929
#define PIN_MODE_SPI 7

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/i2c.c renamed to targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/ti_i2c.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
/*
2-
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3-
*
4-
* Redistribution and use in source and binary forms, with or without
5-
* modification, are permitted provided that the following conditions
2+
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3+
*
4+
* Redistribution and use in source and binary forms, with or without
5+
* modification, are permitted provided that the following conditions
66
* are met:
77
*
8-
* Redistributions of source code must retain the above copyright
8+
* Redistributions of source code must retain the above copyright
99
* notice, this list of conditions and the following disclaimer.
1010
*
1111
* Redistributions in binary form must reproduce the above copyright
12-
* notice, this list of conditions and the following disclaimer in the
13-
* documentation and/or other materials provided with the
12+
* notice, this list of conditions and the following disclaimer in the
13+
* documentation and/or other materials provided with the
1414
* distribution.
1515
*
1616
* Neither the name of Texas Instruments Incorporated nor the names of
1717
* its contributors may be used to endorse or promote products derived
1818
* from this software without specific prior written permission.
1919
*
20-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2222
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2626
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2727
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3030
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31-
*
31+
*
3232
*/
3333
//*****************************************************************************
3434
//
@@ -52,7 +52,7 @@
5252
#include "inc/hw_memmap.h"
5353
#include "inc/hw_types.h"
5454
#include "debug.h"
55-
#include "i2c.h"
55+
#include "ti_i2c.h"
5656
#include "interrupt.h"
5757

5858
//*****************************************************************************

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/spi.c renamed to targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/ti_spi_driverlib.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
/*
2-
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3-
*
4-
* Redistribution and use in source and binary forms, with or without
5-
* modification, are permitted provided that the following conditions
2+
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3+
*
4+
* Redistribution and use in source and binary forms, with or without
5+
* modification, are permitted provided that the following conditions
66
* are met:
77
*
8-
* Redistributions of source code must retain the above copyright
8+
* Redistributions of source code must retain the above copyright
99
* notice, this list of conditions and the following disclaimer.
1010
*
1111
* Redistributions in binary form must reproduce the above copyright
12-
* notice, this list of conditions and the following disclaimer in the
13-
* documentation and/or other materials provided with the
12+
* notice, this list of conditions and the following disclaimer in the
13+
* documentation and/or other materials provided with the
1414
* distribution.
1515
*
1616
* Neither the name of Texas Instruments Incorporated nor the names of
1717
* its contributors may be used to endorse or promote products derived
1818
* from this software without specific prior written permission.
1919
*
20-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2222
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2626
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2727
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3030
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31-
*
31+
*
3232
*/
3333
//*****************************************************************************
3434
//
@@ -52,7 +52,7 @@
5252
#include "inc/hw_mcspi.h"
5353
#include "inc/hw_apps_config.h"
5454
#include "interrupt.h"
55-
#include "spi.h"
55+
#include "ti_spi_driverlib.h"
5656

5757

5858
//*****************************************************************************

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/timer.c renamed to targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/devices/cc32xx/driverlib/ti_timer.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
/*
2-
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3-
*
4-
* Redistribution and use in source and binary forms, with or without
5-
* modification, are permitted provided that the following conditions
2+
* Copyright (C) 2016 Texas Instruments Incorporated - http://www.ti.com/
3+
*
4+
* Redistribution and use in source and binary forms, with or without
5+
* modification, are permitted provided that the following conditions
66
* are met:
77
*
8-
* Redistributions of source code must retain the above copyright
8+
* Redistributions of source code must retain the above copyright
99
* notice, this list of conditions and the following disclaimer.
1010
*
1111
* Redistributions in binary form must reproduce the above copyright
12-
* notice, this list of conditions and the following disclaimer in the
13-
* documentation and/or other materials provided with the
12+
* notice, this list of conditions and the following disclaimer in the
13+
* documentation and/or other materials provided with the
1414
* distribution.
1515
*
1616
* Neither the name of Texas Instruments Incorporated nor the names of
1717
* its contributors may be used to endorse or promote products derived
1818
* from this software without specific prior written permission.
1919
*
20-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2222
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2626
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2727
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3030
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31-
*
31+
*
3232
*/
3333
//*****************************************************************************
3434
//
@@ -51,7 +51,7 @@
5151
#include "inc/hw_types.h"
5252
#include "debug.h"
5353
#include "interrupt.h"
54-
#include "timer.h"
54+
#include "ti_timer.h"
5555

5656

5757
//*****************************************************************************

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/drivers/net/wifi/porting/cc_pal.c

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
/*
22
* cc_pal.c - CC32xx Host Driver Implementation
33
*
4-
* Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
5-
*
6-
*
7-
* Redistribution and use in source and binary forms, with or without
8-
* modification, are permitted provided that the following conditions
4+
* Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
5+
*
6+
*
7+
* Redistribution and use in source and binary forms, with or without
8+
* modification, are permitted provided that the following conditions
99
* are met:
1010
*
11-
* Redistributions of source code must retain the above copyright
11+
* Redistributions of source code must retain the above copyright
1212
* notice, this list of conditions and the following disclaimer.
1313
*
1414
* Redistributions in binary form must reproduce the above copyright
15-
* notice, this list of conditions and the following disclaimer in the
16-
* documentation and/or other materials provided with the
15+
* notice, this list of conditions and the following disclaimer in the
16+
* documentation and/or other materials provided with the
1717
* distribution.
1818
*
1919
* Neither the name of Texas Instruments Incorporated nor the names of
2020
* its contributors may be used to endorse or promote products derived
2121
* from this software without specific prior written permission.
2222
*
23-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2525
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26-
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27-
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2929
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3030
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31-
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32-
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3333
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434
*
3535
*/
@@ -59,7 +59,7 @@
5959
#include "ti/devices/cc32xx/driverlib/rom_map.h"
6060
#include <ti/devices/cc32xx/driverlib/interrupt.h>
6161
#include <ti/devices/cc32xx/driverlib/prcm.h>
62-
#include <ti/devices/cc32xx/driverlib/timer.h>
62+
#include <ti/devices/cc32xx/driverlib/ti_timer.h>
6363
#include <ti/drivers/net/wifi/source/driver.h>
6464

6565
/* NWP_SPARE_REG_5 - (OCP_SHARED_BASE + OCP_SHARED_O_SPARE_REG_5)
@@ -72,7 +72,7 @@
7272

7373
/* ANA_DCDC_PARAMS0 - (HIB1P2_BASE + HIB1P2_O_ANA_DCDC_PARAMETERS0)
7474
- Bits 31:28 - Reserved
75-
- Bits 27 - Override PWM mode (==> PFM)
75+
- Bits 27 - Override PWM mode (==> PFM)
7676
- Bits 26:00 - Reserved
7777
*/
7878
#define ANA_DCDC_PARAMS0 (HIB1P2_BASE + HIB1P2_O_ANA_DCDC_PARAMETERS0)
@@ -163,16 +163,16 @@ int spi_Close(Fd_t fd)
163163

164164

165165
int spi_Read(Fd_t fd, unsigned char *pBuff, int len)
166-
{
166+
{
167167
SPI_Transaction transact_details;
168168
int read_size = 0;
169-
169+
170170
/* check if the link SPI has been initialized successfully */
171171
if(fd < 0)
172172
{
173173
return -1;
174174
}
175-
175+
176176
transact_details.txBuf = NULL;
177177
transact_details.arg = NULL;
178178
while(len > 0)
@@ -223,7 +223,7 @@ int spi_Write(Fd_t fd, unsigned char *pBuff, int len)
223223
{
224224
SPI_Transaction transact_details;
225225
int write_size = 0;
226-
226+
227227
/* check if the link SPI has been initialized successfully */
228228
if(fd < 0)
229229
{
@@ -395,7 +395,7 @@ int Semaphore_create_handle(SemaphoreP_Handle* pSemHandle)
395395

396396
#ifndef SL_PLATFORM_MULTI_THREADED
397397
params.callback = tiDriverSpawnCallback;
398-
#endif
398+
#endif
399399
(*(pSemHandle)) = SemaphoreP_create(1, &params);
400400

401401
if(!(*(pSemHandle)))
@@ -426,7 +426,7 @@ int Mutex_create_handle(MutexP_Handle* pMutexHandle)
426426
MutexP_Params_init(&params);
427427
#ifndef SL_PLATFORM_MULTI_THREADED
428428
params.callback = tiDriverSpawnCallback;
429-
#endif
429+
#endif
430430

431431
(*(pMutexHandle)) = MutexP_create(&params);
432432

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/drivers/power/PowerCC32XX.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#include <ti/devices/cc32xx/driverlib/pin.h>
7070
#include <ti/devices/cc32xx/driverlib/cpu.h>
7171
#include <ti/devices/cc32xx/driverlib/hwspinlock.h>
72-
#include <ti/devices/cc32xx/driverlib/spi.h>
72+
#include <ti/devices/cc32xx/driverlib/ti_spi_driverlib.h>
7373

7474
#define TRUE 1
7575
#define FALSE 0

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/ti/drivers/spi/SPICC32XXDMA.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include <ti/devices/cc32xx/driverlib/rom.h>
4141
#include <ti/devices/cc32xx/driverlib/rom_map.h>
4242
#include <ti/devices/cc32xx/driverlib/prcm.h>
43-
#include <ti/devices/cc32xx/driverlib/spi.h>
43+
#include <ti/devices/cc32xx/driverlib/ti_spi_driverlib.h>
4444
#include <ti/devices/cc32xx/driverlib/udma.h>
4545

4646
#include <ti/drivers/dma/UDMACC32XX.h>

targets/TARGET_TI/TARGET_CC32XX/TARGET_CC3220SF/us_ticker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "us_ticker_api.h"
1919
#include "ti/devices/cc32xx/inc/hw_types.h"
2020
#include "ti/devices/cc32xx/inc/hw_memmap.h"
21-
#include "ti/devices/cc32xx/driverlib/timer.h"
21+
#include "ti/devices/cc32xx/driverlib/ti_timer.h"
2222

2323
/* There're 4 timers running from system clock (80MHz). Configure split 16b TimerA timer counting down. We'll post process it to make it appear count up.
2424
* When the timer is configured in periodic down count mode, GPTMTAPR register acts as a true prescaler. A scaler of 80 yields 1MHz timer.

tools/export/iar/iar_definitions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,5 +278,11 @@
278278
"OGChipSelectEditMenu": "TMPM3H6FWFG\tToshiba TMPM3H6FWFG",
279279
"GFPUCoreSlave": 24,
280280
"GBECoreSlave": 24
281+
},
282+
"CC3220SF": {
283+
"OGChipSelectEditMenu": "CC3220SF\tTexasInstruments CC3220SF",
284+
"CoreVariant": 39,
285+
"GFPUCoreSlave": 39,
286+
"GBECoreSlave": 39
281287
}
282288
}

0 commit comments

Comments
 (0)