hfp_ag.c (80702f974ddb5c630bf5dd81eed9f27699da2a0c) hfp_ag.c (0f1da53350cb7fe9dadf1ce6a6eca1283954c73d)
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 2729 unchanged lines hidden (view full) ---

2738
2739/**
2740 * @brief Called from GSM
2741 */
2742void hfp_ag_incoming_call(void){
2743 hfp_ag_call_sm(HFP_AG_INCOMING_CALL, NULL);
2744}
2745
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 2729 unchanged lines hidden (view full) ---

2738
2739/**
2740 * @brief Called from GSM
2741 */
2742void hfp_ag_incoming_call(void){
2743 hfp_ag_call_sm(HFP_AG_INCOMING_CALL, NULL);
2744}
2745
2746void hfp_ag_outgoing_call_initiated(const char * number) {
2747 UNUSED(number);
2746void hfp_ag_outgoing_call_initiated(void) {
2748 hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED_BY_AG, NULL);
2749}
2750
2751/**
2752 * @brief number is stored.
2753 */
2754void hfp_ag_set_clip(uint8_t type, const char * number){
2755 hfp_gsm_handler(HFP_AG_SET_CLIP, 0, type, number);

--- 411 unchanged lines hidden ---
2747 hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED_BY_AG, NULL);
2748}
2749
2750/**
2751 * @brief number is stored.
2752 */
2753void hfp_ag_set_clip(uint8_t type, const char * number){
2754 hfp_gsm_handler(HFP_AG_SET_CLIP, 0, type, number);

--- 411 unchanged lines hidden ---