/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * 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 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _VARIANT_LUNCHBOX_H_ #define _VARIANT_LUNCHBOX_H_ #ifdef __cplusplus extern "C" { #endif #define VARIANT_VER 0x00000000 //we have LSE in lunchbox #define RTC_CLK RTC_CLK_LSE // fCAL = fRTCCLK x [1 + (256 - CALM) / (2^20 + CALM - 256)] // 32764.505 * (1 + (256 - 144)/(1048576 + 144 - 256)) = 32768.005 #define RTC_PREDIV_A 0UL #define RTC_PREDIV_S 32759UL #define RTC_CALM 144UL #define RTC_CALP 0UL //spi bus for comms #define PLATFORM_HOST_INTF_SPI_BUS 0 #define SH_INT_WAKEUP GPIO_PA(2) #define SH_EXTI_WAKEUP_IRQ EXTI2_IRQn #define AP_INT_WAKEUP GPIO_PA(3) #undef AP_INT_NONWAKEUP #define DEBUG_LOG_EVT 0x3B474F4C #define BL_FLASH_TABLE \ { \ { (uint8_t *)(&BL), 0x04000, BL_FLASH_BL },\ { (uint8_t *)(__eedata_start), 0x04000, BL_FLASH_EEDATA },\ { (uint8_t *)(__eedata_start + 0x04000), 0x04000, BL_FLASH_EEDATA },\ { (uint8_t *)(__code_start), 0x04000, BL_FLASH_KERNEL },\ { (uint8_t *)(__code_start + 0x04000), 0x10000, BL_FLASH_KERNEL },\ { (uint8_t *)(__code_start + 0x10000), 0x20000, BL_FLASH_KERNEL },\ { (uint8_t *)(__shared_start), 0x20000, BL_FLASH_SHARED },\ { (uint8_t *)(__shared_start + 0x20000), 0x20000, BL_FLASH_SHARED },\ } #define BMI160_TO_ANDROID_COORDINATE(x, y, z) \ do { \ int32_t xi = x, yi = y, zi = z; \ x = -yi; y = xi; z = zi; \ } while (0) #define BMM150_TO_ANDROID_COORDINATE(x, y, z) \ do { \ int32_t xi = x, yi = y, zi = z; \ x = xi; y = -yi; z = -zi; \ } while (0) #define HALL_PIN GPIO_PA(9) #define HALL_IRQ EXTI9_5_IRQn #define VSYNC_PIN GPIO_PB(1) #define VSYNC_IRQ EXTI1_IRQn #define PROX_INT_PIN GPIO_PB(10) #define PROX_IRQ EXTI15_10_IRQn //define tap sensor threshold #define TAP_THRESHOLD 0x01 //define Accelerometer fast compensation config #define ACC_FOC_CONFIG 0x3d #ifdef __cplusplus } #endif #endif