• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Hunan OpenValley Digital Industry Development Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *    http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <stdlib.h>
17 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE
18 
19 #include "esp_osal.h"
20 #include "task.h"
21 #include "timers.h"
22 #include "event_groups.h"
23 
24 #define EVENT_LOG() esp_rom_printf("\n%s\n",__func__);while(1);
xEventGroupWaitBits(EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToWaitFor,const BaseType_t xClearOnExit,const BaseType_t xWaitForAllBits,TickType_t xTicksToWait)25 EventBits_t IRAM_ATTR xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait )
26 {
27     EVENT_LOG();
28     return 0;
29 }
xEventGroupCreate(void)30 EventGroupHandle_t IRAM_ATTR xEventGroupCreate( void )
31 {
32     EVENT_LOG();
33     return 0;
34 }
xEventGroupClearBits(EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToClear)35 EventBits_t IRAM_ATTR xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear )
36 {
37     EVENT_LOG();
38     return 0;
39 }
xEventGroupSetBits(EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToSet)40 EventBits_t IRAM_ATTR xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet )
41 {
42     EVENT_LOG();
43     return 0;
44 }
vEventGroupDelete(EventGroupHandle_t xEventGroup)45 void IRAM_ATTR vEventGroupDelete( EventGroupHandle_t xEventGroup )
46 {
47     EVENT_LOG();
48 }
49 
50