1 /******************************************************************************
2 * Copyright (c) 2022 Telink Semiconductor (Shanghai) Co., Ltd. ("TELINK")
3 * All rights reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *****************************************************************************/
18 #include "compiler.h"
19 #include "software_pa.h"
20 #include "../gpio.h"
21
22
23 _attribute_data_retention_sec_ rf_pa_callback_t blc_rf_pa_cb = 0;
24
25 _attribute_ram_code_
app_rf_pa_handler(int type)26 void app_rf_pa_handler(int type)
27 {
28 #if(PA_ENABLE)
29 if(type == PA_TYPE_TX_ON){
30 gpio_set_output_en(PA_RXEN_PIN, 0);
31 gpio_write(PA_RXEN_PIN, 0);
32 gpio_set_output_en(PA_TXEN_PIN, 1);
33 gpio_write(PA_TXEN_PIN, 1);
34 }
35 else if(type == PA_TYPE_RX_ON){
36 gpio_set_output_en(PA_TXEN_PIN, 0);
37 gpio_write(PA_TXEN_PIN, 0);
38 gpio_set_output_en(PA_RXEN_PIN, 1);
39 gpio_write(PA_RXEN_PIN, 1);
40 }
41 else{
42 gpio_set_output_en(PA_RXEN_PIN, 0);
43 gpio_write(PA_RXEN_PIN, 0);
44 gpio_set_output_en(PA_TXEN_PIN, 0);
45 gpio_write(PA_TXEN_PIN, 0);
46 }
47 #endif
48 }
49
50
rf_pa_init(void)51 void rf_pa_init(void)
52 {
53 #if(PA_ENABLE)
54 gpio_set_func(PA_TXEN_PIN, AS_GPIO);
55 gpio_set_output_en(PA_TXEN_PIN, 0);
56 gpio_write(PA_TXEN_PIN, 0);
57
58 gpio_set_func(PA_RXEN_PIN, AS_GPIO);
59 gpio_set_output_en(PA_RXEN_PIN, 0);
60 gpio_write(PA_RXEN_PIN, 0);
61
62 blc_rf_pa_cb = app_rf_pa_handler;
63 #endif
64 }
65
66