mirror of https://github.com/ARMmbed/mbed-os.git
commit
f5f638952b
|
@ -0,0 +1,28 @@
|
||||||
|
/* mbed Microcontroller Library
|
||||||
|
* Copyright (c) 2006-2020 Arm Limited and affiliates.
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
#include "sleep_api.h"
|
||||||
|
#include "am_hal_sysctrl.h"
|
||||||
|
|
||||||
|
void hal_sleep(void)
|
||||||
|
{
|
||||||
|
am_hal_sysctrl_sleep(AM_HAL_SYSCTRL_SLEEP_NORMAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
void hal_deepsleep(void)
|
||||||
|
{
|
||||||
|
am_hal_sysctrl_sleep(AM_HAL_SYSCTRL_SLEEP_DEEP);
|
||||||
|
}
|
|
@ -7246,20 +7246,22 @@
|
||||||
"STDIO_MESSAGES",
|
"STDIO_MESSAGES",
|
||||||
"FLASH",
|
"FLASH",
|
||||||
"SPI",
|
"SPI",
|
||||||
"I2C"
|
"I2C",
|
||||||
|
"SLEEP"
|
||||||
],
|
],
|
||||||
"components": [
|
"components": [
|
||||||
"FLASHIAP"
|
"FLASHIAP"
|
||||||
],
|
],
|
||||||
"macros": [
|
"macros": [
|
||||||
"CORDIO_ZERO_COPY_HCI",
|
"CORDIO_ZERO_COPY_HCI",
|
||||||
"USE_AMBIQ_DRIVER"
|
"USE_AMBIQ_DRIVER",
|
||||||
|
"MBED_TICKLESS"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"AMA3B1KK": {
|
"AMA3B1KK": {
|
||||||
"public": false,
|
"public": false,
|
||||||
"inherits": ["FAMILY_Apollo3"],
|
"inherits": ["FAMILY_Apollo3"],
|
||||||
"macros_add": ["AM_PACKAGE_BGA"]
|
"macros_add": ["AM_PACKAGE_BGA", "MBED_TICKLESS"]
|
||||||
},
|
},
|
||||||
"SFE_ARTEMIS": {
|
"SFE_ARTEMIS": {
|
||||||
"inherits": ["AMA3B1KK"]
|
"inherits": ["AMA3B1KK"]
|
||||||
|
|
Loading…
Reference in New Issue