Commit e1a1f0db authored by Anas Nashif's avatar Anas Nashif
Browse files

st: keep only relevant components



Remove stm32wb which is part of the hal now.

Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent 5ca1f060
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -21,13 +21,4 @@ if(CONFIG_HAS_STLIB)
    zephyr_include_directories(audio/microphone)
    zephyr_sources(audio/microphone/OpenPDMFilter.c)
  endif()
  if(CONFIG_BT_STM32_IPM)
    zephyr_include_directories(stm32wb/hci)
    zephyr_sources(stm32wb/hci/shci.c)
    zephyr_sources(stm32wb/hci/shci_tl.c)
    zephyr_sources(stm32wb/hci/hw_ipcc.c)
    zephyr_sources(stm32wb/hci/stm_list.c)
    zephyr_sources(stm32wb/hci/tl_mbox.c)
    zephyr_sources(stm32wb/hci/tl_if.c)
  endif()
endif()

Kconfig

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
# Kconfig - STLIB config

# Copyright (c) 2017 STMicroelectronics

config HAS_STLIB
    bool
+1 −3
Original line number Diff line number Diff line
@@ -5,6 +5,4 @@ Available libs:
  * sensor/vl53l0x:
      allows to drive the vl53l0x sensor
      full information can be found here : http://www.st.com/en/embedded-software/stsw-img005.html
  * stm32wb/hci:
      Middleware for interprocessor communication on stm32wb dual core SoC
  *...

stm32wb/hci/README

deleted100644 → 0
+0 −37
Original line number Diff line number Diff line
STM32WB HCI
###########

Origin:
   ST Microelectronics
   http://www.st.com/en/embedded-software/stm32cubewb.html

Status:
   version 1.0.0

Purpose:
   This library is used on stm32wb series to enable HCI communication between
   a host BLE running on CM-4 STM32WB core and a controller BLE firmware running
   on CM-0 core.

Description:
   This library provides an API for shared RAM communication with BLE controller
   firmware running on STM32WB C-M0 core.

Dependencies:
   This library depends on STM32Cube IPCC HAL API.
   It is available in ext/hal/st/stm32cube/stm32wbxx/drivers

URL:
   http://www.st.com/en/embedded-software/stm32cubewb.html

commit:
   version 1.0.0

Maintained-by:
   External

License:
   BSD-3-Clause

License Link:
   opensource.org/licenses/BSD-3-Clause

stm32wb/hci/app_common.h

deleted100644 → 0
+0 −114
Original line number Diff line number Diff line
/**
 ******************************************************************************
  * File Name          : app_common.h
  * Description        : App Common application configuration file for BLE
  *                      middleWare.
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  * All rights reserved.</center></h2>
  *
  * This software component is licensed by ST under BSD 3-Clause license,
  * the "License"; You may not use this file except in compliance with the
  * License. You may obtain a copy of the License at:
  *                        opensource.org/licenses/BSD-3-Clause
  *
  ******************************************************************************
  */

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef APP_COMMON_H
#define APP_COMMON_H

#ifdef __cplusplus
extern "C"{
#endif

#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>

#include "app_conf.h"

  /* -------------------------------- *
   *  Basic definitions               *
   * -------------------------------- */

#undef NULL
#define NULL                    0

#undef FALSE
#define FALSE                   0

#undef TRUE
#define TRUE                    (!0)

  /* -------------------------------- *
   *  Critical Section definition     *
   * -------------------------------- */
#define BACKUP_PRIMASK()    uint32_t primask_bit= __get_PRIMASK()
#define DISABLE_IRQ()       __disable_irq()
#define RESTORE_PRIMASK()   __set_PRIMASK(primask_bit)

  /* -------------------------------- *
   *  Macro delimiters                *
   * -------------------------------- */

#define M_BEGIN     do {

#define M_END       } while(0)

  /* -------------------------------- *
   *  Some useful macro definitions   *
   * -------------------------------- */

#define MAX( x, y )          (((x)>(y))?(x):(y))

#define MIN( x, y )          (((x)<(y))?(x):(y))

#define MODINC( a, m )       M_BEGIN  (a)++;  if ((a)>=(m)) (a)=0;  M_END

#define MODDEC( a, m )       M_BEGIN  if ((a)==0) (a)=(m);  (a)--;  M_END

#define MODADD( a, b, m )    M_BEGIN  (a)+=(b);  if ((a)>=(m)) (a)-=(m);  M_END

#define MODSUB( a, b, m )    MODADD( a, (m)-(b), m )

#define PAUSE( t )           M_BEGIN \
                               __IO int _i; \
                               for ( _i = t; _i > 0; _i -- ); \
                             M_END

#define DIVF( x, y )         ((x)/(y))

#define DIVC( x, y )         (((x)+(y)-1)/(y))

#define DIVR( x, y )         (((x)+((y)/2))/(y))

#define SHRR( x, n )         ((((x)>>((n)-1))+1)>>1)

#define BITN( w, n )         (((w)[(n)/32] >> ((n)%32)) & 1)

#define BITNSET( w, n, b )   M_BEGIN (w)[(n)/32] |= ((U32)(b))<<((n)%32); M_END

  /* -------------------------------- *
   *  Compiler                         *
   * -------------------------------- */
#define PLACE_IN_SECTION( __x__ )  __attribute__((section (__x__)))

#ifdef WIN32
#define ALIGN(n)
#else
#define ALIGN(n)             __attribute__((aligned(n)))
#endif

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /*APP_COMMON_H */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Loading