[bsp][airm2m/air105][rsoc] Fix compilation issues with bsp of airm2m/air105
This commit is contained in:
parent
1bf3d79be1
commit
443d56cfb1
|
@ -101,6 +101,7 @@ jobs:
|
||||||
- "rm48x50"
|
- "rm48x50"
|
||||||
- "ht32/ht32f52352"
|
- "ht32/ht32f52352"
|
||||||
- "ht32/ht32f12366"
|
- "ht32/ht32f12366"
|
||||||
|
- "airm2m/air105"
|
||||||
- "w60x"
|
- "w60x"
|
||||||
- "essemi/es32f0654"
|
- "essemi/es32f0654"
|
||||||
- "essemi/es32f365x"
|
- "essemi/es32f365x"
|
||||||
|
|
|
@ -43,7 +43,7 @@ jobs:
|
||||||
legs:
|
legs:
|
||||||
- {RTT_BSP_NAME: "acm32_acm32f0x0-nucleo", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "acm32/acm32f0x0-nucleo"}
|
- {RTT_BSP_NAME: "acm32_acm32f0x0-nucleo", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "acm32/acm32f0x0-nucleo"}
|
||||||
- {RTT_BSP_NAME: "acm32_acm32f4xx-nucleo", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "acm32/acm32f4xx-nucleo"}
|
- {RTT_BSP_NAME: "acm32_acm32f4xx-nucleo", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "acm32/acm32f4xx-nucleo"}
|
||||||
#- {RTT_BSP_NAME: "airm2m_air105", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "airm2m/air105"} #scons fail in last step
|
- {RTT_BSP_NAME: "airm2m_air105", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "airm2m/air105"}
|
||||||
- {RTT_BSP_NAME: "airm2m_air32f103", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "airm2m/air32f103"}
|
- {RTT_BSP_NAME: "airm2m_air32f103", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "airm2m/air32f103"}
|
||||||
#- {RTT_BSP_NAME: "allwinner_d1", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "allwinner/d1"} # rt-smart fail toolchain
|
#- {RTT_BSP_NAME: "allwinner_d1", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "allwinner/d1"} # rt-smart fail toolchain
|
||||||
#- {RTT_BSP_NAME: "allwinner_d1s", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "allwinner/d1s"} #toochain
|
#- {RTT_BSP_NAME: "allwinner_d1s", RTT_TOOL_CHAIN: "sourcery-arm", RTT_BSP: "allwinner/d1s"} #toochain
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2006-2022, RT-Thread Development Team
|
* Copyright (c) 2006-2024 RT-Thread Development Team
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*
|
*
|
||||||
|
@ -7,8 +7,11 @@
|
||||||
* Date Author Notes
|
* Date Author Notes
|
||||||
* 2022-02-22 airm2m first version
|
* 2022-02-22 airm2m first version
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "board.h"
|
#include "board.h"
|
||||||
|
#include "drv_common.h"
|
||||||
|
#include "drv_gpio.h"
|
||||||
|
#include "drv_usart_v2.h"
|
||||||
|
|
||||||
uint32_t SystemCoreClock;
|
uint32_t SystemCoreClock;
|
||||||
extern const uint32_t __isr_start_address;
|
extern const uint32_t __isr_start_address;
|
||||||
|
|
||||||
|
@ -56,7 +59,7 @@ void rt_hw_board_init(void)
|
||||||
rt_hw_systick_init();
|
rt_hw_systick_init();
|
||||||
DMA_GlobalInit();
|
DMA_GlobalInit();
|
||||||
Uart_GlobalInit();
|
Uart_GlobalInit();
|
||||||
DMA_TakeStream(DMA1_STREAM_1);//for qspi
|
DMA_TakeStream(DMA1_STREAM_1);/* for qspi */
|
||||||
CoreTick_Init();
|
CoreTick_Init();
|
||||||
#ifdef RT_USING_PIN
|
#ifdef RT_USING_PIN
|
||||||
rt_hw_pin_init();
|
rt_hw_pin_init();
|
||||||
|
|
|
@ -21,14 +21,14 @@
|
||||||
|
|
||||||
#ifndef __CORE_IRQ_H__
|
#ifndef __CORE_IRQ_H__
|
||||||
#define __CORE_IRQ_H__
|
#define __CORE_IRQ_H__
|
||||||
|
#include <stdint.h>
|
||||||
/**
|
/**
|
||||||
* @brief 设置中断回调函数
|
* @brief 设置中断回调函数
|
||||||
*
|
*
|
||||||
* @param Irq 中断号 0~IRQ_LINE_MAX
|
* @param Irq 中断号 0~IRQ_LINE_MAX
|
||||||
* @param Handler 中断回调函数,如 void Irq_Handler(uint32_t IrqLine, void *pData); 可以多个中断号对应1个中断函数,回调时传入中断号和用户数据
|
* @param Handler 中断回调函数,如 void Irq_Handler(uint32_t IrqLine, void *pData); 可以多个中断号对应1个中断函数,回调时传入中断号和用户数据
|
||||||
*/
|
*/
|
||||||
void ISR_SetHandler(int32_t Irq, void *Handler);
|
void ISR_SetHandler(int32_t Irq, void *Handler, void *pData);
|
||||||
/**
|
/**
|
||||||
* @brief 设置中断优先级
|
* @brief 设置中断优先级
|
||||||
*
|
*
|
||||||
|
|
|
@ -18,11 +18,11 @@
|
||||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
* 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.
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
#include "core_irq.h"
|
||||||
#include "user.h"
|
#include "user.h"
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
const DMA_TypeDef *RegBase;
|
DMA_TypeDef *RegBase;
|
||||||
const uint32_t Index;
|
const uint32_t Index;
|
||||||
CBFuncEx_t CB;
|
CBFuncEx_t CB;
|
||||||
void *pData;
|
void *pData;
|
||||||
|
@ -65,17 +65,17 @@ typedef struct
|
||||||
|
|
||||||
/************ operation definition for DMA DMA_CFG_L REGISTER ************/
|
/************ operation definition for DMA DMA_CFG_L REGISTER ************/
|
||||||
#define DMA_CFG_HS_SEL_SRC_Pos (11)
|
#define DMA_CFG_HS_SEL_SRC_Pos (11)
|
||||||
#define DMA_CFG_HS_SEL_SRC_Mask (0x01U<<DMA_CFG_HS_SEL_SRC_Pos)//0 HARD 1 SOFT
|
#define DMA_CFG_HS_SEL_SRC_Mask (0x01U<<DMA_CFG_HS_SEL_SRC_Pos)/*0 HARD 1 SOFT*/
|
||||||
|
|
||||||
#define DMA_CFG_HS_SEL_DST_Pos (10)
|
#define DMA_CFG_HS_SEL_DST_Pos (10)
|
||||||
#define DMA_CFG_HS_SEL_DST_Mask (0x01U<<DMA_CFG_HS_SEL_DST_Pos)
|
#define DMA_CFG_HS_SEL_DST_Mask (0x01U<<DMA_CFG_HS_SEL_DST_Pos)
|
||||||
|
|
||||||
/************ operation definition for DMA DMA_CFG_H REGISTER ************/
|
/************ operation definition for DMA DMA_CFG_H REGISTER ************/
|
||||||
#define DMA_CFG_DEST_PER_Pos (11)
|
#define DMA_CFG_DEST_PER_Pos (11)
|
||||||
#define DMA_CFG_DEST_PER_Mask (0x07U<<DMA_CFG_DEST_PER_Pos)//need write current channel num
|
#define DMA_CFG_DEST_PER_Mask (0x07U<<DMA_CFG_DEST_PER_Pos)/*need write current channel num*/
|
||||||
|
|
||||||
#define DMA_CFG_SRC_PER_Pos (7)
|
#define DMA_CFG_SRC_PER_Pos (7)
|
||||||
#define DMA_CFG_SRC_PER_Mask (0x07U<<DMA_CFG_SRC_PER_Pos)//need write current channel num
|
#define DMA_CFG_SRC_PER_Mask (0x07U<<DMA_CFG_SRC_PER_Pos)/*need write current channel num*/
|
||||||
|
|
||||||
/************ operation definition for DMA DMA_LLP_L REGISTER ************/
|
/************ operation definition for DMA DMA_LLP_L REGISTER ************/
|
||||||
#define DMAC_LLP_NEXT_LLI_MSK (0x3)
|
#define DMAC_LLP_NEXT_LLI_MSK (0x3)
|
||||||
|
@ -212,7 +212,7 @@ int DMA_ConfigStream(uint8_t Stream, void *Config)
|
||||||
(DMA_InitStruct->DMA_PeripheralDataSize << DMA_CTL_DST_TR_WIDTH_Pos);
|
(DMA_InitStruct->DMA_PeripheralDataSize << DMA_CTL_DST_TR_WIDTH_Pos);
|
||||||
|
|
||||||
hwDMAChannal[Stream].TxDir = 1;
|
hwDMAChannal[Stream].TxDir = 1;
|
||||||
// hwDMA->CFG_L = (1 << 18);
|
/* hwDMA->CFG_L = (1 << 18); */
|
||||||
hwDMA->CFG_L = 0;
|
hwDMA->CFG_L = 0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -333,7 +333,7 @@ uint32_t DMA_GetDataLength(uint8_t Stream, uint32_t FirstAddress)
|
||||||
static void DMA_IrqHandle(int32_t IrqLine, void *pData)
|
static void DMA_IrqHandle(int32_t IrqLine, void *pData)
|
||||||
{
|
{
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
// DBG("%x", DMA->StatusTfr_L);
|
/* DBG("%x", DMA->StatusTfr_L); */
|
||||||
if (DMA->StatusInt_L & (1 << 0))
|
if (DMA->StatusInt_L & (1 << 0))
|
||||||
{
|
{
|
||||||
for(i = 0; i < DMA_STREAM_QTY; i++)
|
for(i = 0; i < DMA_STREAM_QTY; i++)
|
||||||
|
@ -352,7 +352,7 @@ static void DMA_IrqHandle(int32_t IrqLine, void *pData)
|
||||||
if (DMA->StatusErr_L & (1 << i))
|
if (DMA->StatusErr_L & (1 << i))
|
||||||
{
|
{
|
||||||
DMA->ClearErr_L = (1 << i);
|
DMA->ClearErr_L = (1 << i);
|
||||||
hwDMAChannal[i].CB(hwDMAChannal[i].pData, 0xffffffff);
|
hwDMAChannal[i].CB(hwDMAChannal[i].pData, (void *)0xffffffff);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,12 @@ void _Error_Handler(char *s, int num);
|
||||||
|
|
||||||
#define DMA_NOT_AVAILABLE ((DMA_INSTANCE_TYPE *)0xFFFFFFFFU)
|
#define DMA_NOT_AVAILABLE ((DMA_INSTANCE_TYPE *)0xFFFFFFFFU)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function is mainly used for SysTick initialization
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void rt_hw_systick_init(void);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
import urllib
|
import urllib.request
|
||||||
|
|
||||||
out_path='./'
|
out_path='./'
|
||||||
bin_file_name='rtthread.bin'
|
bin_file_name='rtthread.bin'
|
||||||
pack_path='./pack'
|
pack_path='./pack'
|
||||||
|
@ -17,13 +15,14 @@ if __name__=='__main__':
|
||||||
os.remove(out_file+'.soc')
|
os.remove(out_file+'.soc')
|
||||||
|
|
||||||
if not os.path.exists(pack_path+'/bootloader.bin'):
|
if not os.path.exists(pack_path+'/bootloader.bin'):
|
||||||
urllib.urlretrieve("http://cdndownload.openluat.com/rt-thread/airm2m/air105/bootloader.bin", pack_path+'/bootloader.bin')
|
urllib.request.urlretrieve("http://cdndownload.openluat.com/rt-thread/airm2m/air105/bootloader.bin", pack_path + '/bootloader.bin')
|
||||||
|
|
||||||
if not os.path.exists(pack_path+'/soc_download.exe'):
|
if not os.path.exists(pack_path+'/soc_download.exe'):
|
||||||
urllib.urlretrieve("http://cdndownload.openluat.com/rt-thread/airm2m/air105/soc_download.exe", pack_path+'/soc_download.exe')
|
urllib.request.urlretrieve("http://cdndownload.openluat.com/rt-thread/airm2m/air105/bootloader.bin", pack_path + '/bootloader.bin')
|
||||||
|
|
||||||
shutil.copy(out_path+bin_file_name, pack_path+'/'+bin_file_name)
|
shutil.copy(out_path+bin_file_name, pack_path+'/'+bin_file_name)
|
||||||
shutil.make_archive(out_file, 'zip', root_dir=pack_path)
|
shutil.make_archive(out_file, 'zip', root_dir=pack_path)
|
||||||
os.remove(pack_path+'/'+bin_file_name)
|
os.remove(pack_path+'/'+bin_file_name)
|
||||||
os.rename(out_file+'.zip',out_file+'.soc')
|
os.rename(out_file+'.zip',out_file+'.soc')
|
||||||
|
|
||||||
print('end')
|
print('end')
|
||||||
|
|
Loading…
Reference in New Issue