forked from xuos/xiuos
support sabre-lite borad on xiuos appframework and Nuttx
This commit is contained in:
parent
9c5c6b32b1
commit
912f87ecc9
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/include/board.h
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file board.h
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite board.h file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_H
|
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_H
|
||||||
#define __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_H
|
#define __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_H
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/include/board_memorymap.h
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file board_memorymap.h
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite board memorymap
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_MEMORYMAP_H
|
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_MEMORYMAP_H
|
||||||
#define __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_MEMORYMAP_H
|
#define __BOARDS_ARM_IMX6_SABRE_LITE_INCLUDE_BOARD_MEMORYMAP_H
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/imx_appinit.c
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file imx_appinit.c
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite imx_appinit.c file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Included Files
|
* Included Files
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/imx_autoleds.c
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file imx_autoleds.c
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite imx_autoleds.c file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
/* LEDs
|
/* LEDs
|
||||||
*
|
*
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/imx_boardinit.c
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file imx_boardinit.c
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite imx_boardinit.c file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Included Files
|
* Included Files
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/imx_bringup.c
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file imx_bringup.c
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite imx_bringup.c file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Included Files
|
* Included Files
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/imx_userleds.c
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file imx_userleds.c
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite imx_userleds.c file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Included Files
|
* Included Files
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
/****************************************************************************
|
/*
|
||||||
* boards/arm/imx6/sabre-lite/src/sabre-lite.h
|
* Copyright (c) 2020 AIIT XUOS Lab
|
||||||
*
|
* XiOS is licensed under Mulan PSL v2.
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* You may obtain a copy of Mulan PSL v2 at:
|
||||||
* this work for additional information regarding copyright ownership. The
|
* http://license.coscl.org.cn/MulanPSL2
|
||||||
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
||||||
* "License"); you may not use this file except in compliance with the
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
||||||
* License. You may obtain a copy of the License at
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
||||||
*
|
* See the Mulan PSL v2 for more details.
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
*/
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
/**
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
* @file sabre-lite.h
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
* @brief sabre-lite sabre-lite.h file
|
||||||
* License for the specific language governing permissions and limitations
|
* @version 1.0
|
||||||
* under the License.
|
* @author AIIT XUOS Lab
|
||||||
*
|
* @date 2023.05.15
|
||||||
****************************************************************************/
|
*/
|
||||||
|
|
||||||
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_SRC_SABRE_LITE_H
|
#ifndef __BOARDS_ARM_IMX6_SABRE_LITE_SRC_SABRE_LITE_H
|
||||||
#define __BOARDS_ARM_IMX6_SABRE_LITE_SRC_SABRE_LITE_H
|
#define __BOARDS_ARM_IMX6_SABRE_LITE_SRC_SABRE_LITE_H
|
||||||
|
|
Loading…
Reference in New Issue