1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
|
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
File: oct6100_tone_detection.c
Copyright (c) 2001-2007 Octasic Inc.
Description:
This file contains functions used to enable and disable tone detection on
an echo channel.
This file is part of the Octasic OCT6100 GPL API . The OCT6100 GPL API is
free software; you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
The OCT6100 GPL API is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with the OCT6100 GPL API; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
$Octasic_Release: OCT612xAPI-01.00-PR49 $
$Octasic_Revision: 51 $
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/***************************** INCLUDE FILES *******************************/
#include "octdef.h"
#include "oct6100api/oct6100_defines.h"
#include "oct6100api/oct6100_errors.h"
#include "oct6100api/oct6100_apiud.h"
#include "apilib/octapi_llman.h"
#include "oct6100api/oct6100_tlv_inst.h"
#include "oct6100api/oct6100_chip_open_inst.h"
#include "oct6100api/oct6100_chip_stats_inst.h"
#include "oct6100api/oct6100_interrupts_inst.h"
#include "oct6100api/oct6100_remote_debug_inst.h"
#include "oct6100api/oct6100_debug_inst.h"
#include "oct6100api/oct6100_api_inst.h"
#include "oct6100api/oct6100_channel_inst.h"
#include "oct6100api/oct6100_tone_detection_inst.h"
#include "oct6100api/oct6100_events_inst.h"
#include "oct6100api/oct6100_interrupts_pub.h"
#include "oct6100api/oct6100_chip_open_pub.h"
#include "oct6100api/oct6100_channel_pub.h"
#include "oct6100api/oct6100_tone_detection_pub.h"
#include "oct6100api/oct6100_events_pub.h"
#include "oct6100_chip_open_priv.h"
#include "oct6100_miscellaneous_priv.h"
#include "oct6100_memory_priv.h"
#include "oct6100_channel_priv.h"
#include "oct6100_tone_detection_priv.h"
#include "oct6100_events_priv.h"
/**************************** PUBLIC FUNCTIONS *****************************/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ToneDetectionEnable
Description: This function enables the generation of event for a selected
tone on the specified channel.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectEnable Pointer to tone detection enable structure.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ToneDetectionEnableDef
UINT32 Oct6100ToneDetectionEnableDef(
tPOCT6100_TONE_DETECTION_ENABLE f_pToneDetectEnable )
{
f_pToneDetectEnable->ulChannelHndl = cOCT6100_INVALID_HANDLE;
f_pToneDetectEnable->ulToneNumber = cOCT6100_INVALID_TONE;
return cOCT6100_ERR_OK;
}
#endif
#if !SKIP_Oct6100ToneDetectionEnable
UINT32 Oct6100ToneDetectionEnable(
tPOCT6100_INSTANCE_API f_pApiInstance,
tPOCT6100_TONE_DETECTION_ENABLE f_pToneDetectEnable )
{
tOCT6100_SEIZE_SERIALIZE_OBJECT SeizeSerObj;
tOCT6100_RELEASE_SERIALIZE_OBJECT ReleaseSerObj;
UINT32 ulSerRes = cOCT6100_ERR_OK;
UINT32 ulFncRes = cOCT6100_ERR_OK;
/* Set the process context of the serialize structure. */
SeizeSerObj.pProcessContext = f_pApiInstance->pProcessContext;
ReleaseSerObj.pProcessContext = f_pApiInstance->pProcessContext;
/* Seize all list semaphores needed by this function. */
SeizeSerObj.ulSerialObjHndl = f_pApiInstance->ulApiSerObj;
SeizeSerObj.ulTryTimeMs = cOCT6100_WAIT_INFINITELY;
ulSerRes = Oct6100UserSeizeSerializeObject( &SeizeSerObj );
if ( ulSerRes == cOCT6100_ERR_OK )
{
/* Call the serialized function. */
ulFncRes = Oct6100ToneDetectionEnableSer( f_pApiInstance, f_pToneDetectEnable );
}
else
{
return ulSerRes;
}
/* Release the seized semaphores. */
ReleaseSerObj.ulSerialObjHndl = f_pApiInstance->ulApiSerObj;
ulSerRes = Oct6100UserReleaseSerializeObject( &ReleaseSerObj );
/* If an error occured then return the error code. */
if ( ulSerRes != cOCT6100_ERR_OK )
return ulSerRes;
if ( ulFncRes != cOCT6100_ERR_OK )
return ulFncRes;
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ToneDetectionDisable
Description: This function disables the detection of a tone for a specific
channel.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectDisable Pointer to tone detection disable structure.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ToneDetectionDisableDef
UINT32 Oct6100ToneDetectionDisableDef(
tPOCT6100_TONE_DETECTION_DISABLE f_pToneDetectDisable )
{
f_pToneDetectDisable->ulChannelHndl = cOCT6100_INVALID_HANDLE;
f_pToneDetectDisable->ulToneNumber = cOCT6100_INVALID_VALUE;
f_pToneDetectDisable->fDisableAll = FALSE;
return cOCT6100_ERR_OK;
}
#endif
#if !SKIP_Oct6100ToneDetectionDisable
UINT32 Oct6100ToneDetectionDisable(
tPOCT6100_INSTANCE_API f_pApiInstance,
tPOCT6100_TONE_DETECTION_DISABLE f_pToneDetectDisable )
{
tOCT6100_SEIZE_SERIALIZE_OBJECT SeizeSerObj;
tOCT6100_RELEASE_SERIALIZE_OBJECT ReleaseSerObj;
UINT32 ulSerRes = cOCT6100_ERR_OK;
UINT32 ulFncRes = cOCT6100_ERR_OK;
/* Set the process context of the serialize structure. */
SeizeSerObj.pProcessContext = f_pApiInstance->pProcessContext;
ReleaseSerObj.pProcessContext = f_pApiInstance->pProcessContext;
/* Seize all list semaphores needed by this function. */
SeizeSerObj.ulSerialObjHndl = f_pApiInstance->ulApiSerObj;
SeizeSerObj.ulTryTimeMs = cOCT6100_WAIT_INFINITELY;
ulSerRes = Oct6100UserSeizeSerializeObject( &SeizeSerObj );
if ( ulSerRes == cOCT6100_ERR_OK )
{
/* Call the serialized function. */
ulFncRes = Oct6100ToneDetectionDisableSer( f_pApiInstance, f_pToneDetectDisable );
}
else
{
return ulSerRes;
}
/* Release the seized semaphores. */
ReleaseSerObj.ulSerialObjHndl = f_pApiInstance->ulApiSerObj;
ulSerRes = Oct6100UserReleaseSerializeObject( &ReleaseSerObj );
/* If an error occured then return the error code. */
if ( ulSerRes != cOCT6100_ERR_OK )
return ulSerRes;
if ( ulFncRes != cOCT6100_ERR_OK )
return ulFncRes;
return cOCT6100_ERR_OK;
}
#endif
/**************************** PRIVATE FUNCTIONS ****************************/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ToneDetectionEnableSer
Description: Activate the detection of a tone on the specified channel.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectEnable Pointer to tone detect enable structure. This structure
contains, among other things, the tone ID to enable
and the channel handle where detection should be
enabled.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ToneDetectionEnableSer
UINT32 Oct6100ToneDetectionEnableSer(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN tPOCT6100_TONE_DETECTION_ENABLE f_pToneDetectEnable )
{
UINT32 ulChanIndex;
UINT32 ulExtToneChanIndex;
UINT32 ulToneEventNumber = 0;
UINT32 ulResult;
/* Check the user's configuration of the tone detection for errors. */
ulResult = Oct6100ApiCheckToneEnableParams(
f_pApiInstance,
f_pToneDetectEnable,
&ulChanIndex,
&ulToneEventNumber,
&ulExtToneChanIndex );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Write to all resources needed to enable tone detection. */
ulResult = Oct6100ApiWriteToneDetectEvent(
f_pApiInstance,
ulChanIndex,
ulToneEventNumber,
ulExtToneChanIndex );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Update the channel entry to indicate that a new tone has been activated. */
ulResult = Oct6100ApiUpdateChanToneDetectEntry(
f_pApiInstance,
ulChanIndex,
ulToneEventNumber,
ulExtToneChanIndex );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiCheckToneEnableParams
Description: Check the validity of the channel and tone requested.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectEnable Pointer to tone detection enable structure.
f_pulChannelIndex Pointer to the channel index.
f_pulToneEventNumber Pointer to the Index of the tone associated to the requested tone.
f_pulExtToneChanIndex Pointer to the index of the extended channel index.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiCheckToneEnableParams
UINT32 Oct6100ApiCheckToneEnableParams(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN tPOCT6100_TONE_DETECTION_ENABLE f_pToneDetectEnable,
OUT PUINT32 f_pulChannelIndex,
OUT PUINT32 f_pulToneEventNumber,
OUT PUINT32 f_pulExtToneChanIndex )
{
tPOCT6100_API_CHANNEL pEchoChannel;
UINT32 ulEntryOpenCnt;
UINT32 i;
/*=====================================================================*/
/* Check the channel handle. */
if ( (f_pToneDetectEnable->ulChannelHndl & cOCT6100_HNDL_TAG_MASK) != cOCT6100_HNDL_TAG_CHANNEL )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
*f_pulChannelIndex = f_pToneDetectEnable->ulChannelHndl & cOCT6100_HNDL_INDEX_MASK;
if ( *f_pulChannelIndex >= f_pApiInstance->pSharedInfo->ChipConfig.usMaxChannels )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
mOCT6100_GET_CHANNEL_ENTRY_PNT( f_pApiInstance->pSharedInfo, pEchoChannel, *f_pulChannelIndex )
/* Extract the entry open count from the provided handle. */
ulEntryOpenCnt = (f_pToneDetectEnable->ulChannelHndl >> cOCT6100_ENTRY_OPEN_CNT_SHIFT) & cOCT6100_ENTRY_OPEN_CNT_MASK;
/* Check for errors. */
if ( pEchoChannel->fReserved != TRUE )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_NOT_OPEN;
if ( ulEntryOpenCnt != pEchoChannel->byEntryOpenCnt )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
/* Set the extended tone detection info if it is activated on the channel. */
*f_pulExtToneChanIndex = pEchoChannel->usExtToneChanIndex;
/*=====================================================================*/
/* Check the tone information. */
/* Find out if the tone is present in the build. */
for ( i = 0; i < cOCT6100_MAX_TONE_EVENT; i++ )
{
if ( f_pApiInstance->pSharedInfo->ImageInfo.aToneInfo[ i ].ulToneID == f_pToneDetectEnable->ulToneNumber )
{
*f_pulToneEventNumber = i;
break;
}
}
/* Check if tone is present. */
if ( i == cOCT6100_MAX_TONE_EVENT )
return cOCT6100_ERR_NOT_SUPPORTED_TONE_NOT_PRESENT_IN_FIRMWARE;
/* Check if the requested tone is actually detected. */
if ((( pEchoChannel->aulToneConf[ *f_pulToneEventNumber / 32 ] >> ( 31 - ( *f_pulToneEventNumber % 32 ))) & 0x1) == 1 )
return cOCT6100_ERR_TONE_DETECTION_TONE_ACTIVATED;
/*=====================================================================*/
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiWriteToneDetectEvent
Description: Write the tone detection event in the channel main structure.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulChannelIndex Index of the channel within the API's channel list.
f_ulToneEventNumber Event number of the tone to be activated.
f_ulExtToneChanIndex Index of the extended tone detection channel.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiWriteToneDetectEvent
UINT32 Oct6100ApiWriteToneDetectEvent(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulChannelIndex,
IN UINT32 f_ulToneEventNumber,
IN UINT32 f_ulExtToneChanIndex )
{
tPOCT6100_SHARED_INFO pSharedInfo;
tOCT6100_WRITE_PARAMS WriteParams;
tOCT6100_READ_PARAMS ReadParams;
UINT32 ulResult;
UINT16 usReadData;
/* Obtain local pointer to shared portion of instance. */
pSharedInfo = f_pApiInstance->pSharedInfo;
ReadParams.pProcessContext = f_pApiInstance->pProcessContext;
ReadParams.ulUserChipId = pSharedInfo->ChipConfig.ulUserChipId;
ReadParams.pusReadData = &usReadData;
WriteParams.pProcessContext = f_pApiInstance->pProcessContext;
WriteParams.ulUserChipId = pSharedInfo->ChipConfig.ulUserChipId;
/*=======================================================================*/
/* Read the current event config about to be modified. */
ReadParams.ulReadAddress = pSharedInfo->MemoryMap.ulChanMainMemBase + ( f_ulChannelIndex * pSharedInfo->MemoryMap.ulChanMainMemSize );
ReadParams.ulReadAddress += cOCT6100_CH_MAIN_TONE_EVENT_OFFSET;
ReadParams.ulReadAddress += (f_ulToneEventNumber / 16) * 2;
mOCT6100_DRIVER_READ_API( ReadParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/*=======================================================================*/
/* Set the tone event in the channel main memory for the requested direction. */
WriteParams.ulWriteAddress = ReadParams.ulReadAddress;
WriteParams.usWriteData = usReadData;
WriteParams.usWriteData |= ( 0x1 << ( 15 - ( f_ulToneEventNumber % 16 )));
mOCT6100_DRIVER_WRITE_API( WriteParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/*=======================================================================*/
/* Also program the extended channel if one is present. */
if ( f_ulExtToneChanIndex != cOCT6100_INVALID_INDEX )
{
/* Read the current event config about to be modified. */
ReadParams.ulReadAddress = pSharedInfo->MemoryMap.ulChanMainMemBase + ( f_ulExtToneChanIndex * pSharedInfo->MemoryMap.ulChanMainMemSize );
ReadParams.ulReadAddress += cOCT6100_CH_MAIN_TONE_EVENT_OFFSET;
ReadParams.ulReadAddress += (f_ulToneEventNumber / 16) * 2;
mOCT6100_DRIVER_READ_API( ReadParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Write the tone event in the channel main memory for the requested direction. */
WriteParams.ulWriteAddress = ReadParams.ulReadAddress;
WriteParams.usWriteData = usReadData;
WriteParams.usWriteData |= ( 0x1 << ( 15 - ( f_ulToneEventNumber % 16 )));
mOCT6100_DRIVER_WRITE_API( WriteParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
/*=======================================================================*/
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiUpdateChanToneDetectEntry
Description: Update the echo channel entry to store the info about the tone
being configured to generate detection events.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulChannelIndex Index of the channel within the API's channel list.
f_ulToneEventNumber Enabled tone event number.
f_ulExtToneChanIndex Index of the extended tone detection channel.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiUpdateChanToneDetectEntry
UINT32 Oct6100ApiUpdateChanToneDetectEntry (
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulChannelIndex,
IN UINT32 f_ulToneEventNumber,
IN UINT32 f_ulExtToneChanIndex )
{
tPOCT6100_API_CHANNEL pEchoChanEntry;
tPOCT6100_SHARED_INFO pSharedInfo;
UINT32 ulToneEntry;
/* Obtain local pointer to shared portion of instance. */
pSharedInfo = f_pApiInstance->pSharedInfo;
/* Update the channel entry. */
mOCT6100_GET_CHANNEL_ENTRY_PNT( pSharedInfo, pEchoChanEntry, f_ulChannelIndex );
/* Set the corresponding bit in the channel array. */
ulToneEntry = pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ];
/* Modify the entry. */
ulToneEntry |= ( 0x1 << ( 31 - ( f_ulToneEventNumber % 32 )));
/* Copy back the new value. */
pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ] = ulToneEntry;
/* Configure also the extended channel if necessary. */
if ( f_ulExtToneChanIndex != cOCT6100_INVALID_INDEX )
{
/* Update the channel entry. */
mOCT6100_GET_CHANNEL_ENTRY_PNT( pSharedInfo, pEchoChanEntry, f_ulExtToneChanIndex );
/* Set the corresponding bit in the channel array. */
ulToneEntry = pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ];
/* Modify the entry. */
ulToneEntry |= ( 0x1 << ( 31 - ( f_ulToneEventNumber % 32 )));
/* Copy back the new value. */
pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ] = ulToneEntry;
}
/* Check for the SS tone events that could have been generated before. */
if ( f_ulExtToneChanIndex == cOCT6100_INVALID_INDEX )
{
BOOL fSSTone;
UINT32 ulResult;
ulResult = Oct6100ApiIsSSTone( f_pApiInstance, pSharedInfo->ImageInfo.aToneInfo[ f_ulToneEventNumber ].ulToneID, &fSSTone );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Is this a signaling system tone? */
if ( fSSTone == TRUE )
{
/* Check if must generate an event for the last detected SS tone. */
if ( ( pEchoChanEntry->ulLastSSToneDetected != cOCT6100_INVALID_INDEX )
&& ( pEchoChanEntry->ulLastSSToneDetected == pSharedInfo->ImageInfo.aToneInfo[ f_ulToneEventNumber ].ulToneID ) )
{
/* Must write an event for this. */
tPOCT6100_API_TONE_EVENT pSoftEvent;
/* If enough space. */
if ( ( ( pSharedInfo->SoftBufs.ulToneEventBufferWritePtr + 1 ) != pSharedInfo->SoftBufs.ulToneEventBufferReadPtr ) &&
( ( pSharedInfo->SoftBufs.ulToneEventBufferWritePtr + 1 ) != pSharedInfo->SoftBufs.ulToneEventBufferSize || pSharedInfo->SoftBufs.ulToneEventBufferReadPtr != 0 ) )
{
/* Form the event for this captured tone. */
mOCT6100_GET_TONE_EVENT_BUF_PNT( pSharedInfo, pSoftEvent )
pSoftEvent += pSharedInfo->SoftBufs.ulToneEventBufferWritePtr;
pSoftEvent->ulChannelHandle = cOCT6100_HNDL_TAG_CHANNEL | (pEchoChanEntry->byEntryOpenCnt << cOCT6100_ENTRY_OPEN_CNT_SHIFT) | f_ulChannelIndex;
pSoftEvent->ulUserChanId = pEchoChanEntry->ulUserChanId;
pSoftEvent->ulToneDetected = pSharedInfo->ImageInfo.aToneInfo[ f_ulToneEventNumber ].ulToneID;
pSoftEvent->ulTimestamp = pEchoChanEntry->ulLastSSToneTimestamp;
pSoftEvent->ulExtToneDetectionPort = cOCT6100_INVALID_VALUE;
pSoftEvent->ulEventType = cOCT6100_TONE_PRESENT;
/* Update the control variables of the buffer. */
pSharedInfo->SoftBufs.ulToneEventBufferWritePtr++;
if ( pSharedInfo->SoftBufs.ulToneEventBufferWritePtr == pSharedInfo->SoftBufs.ulToneEventBufferSize )
pSharedInfo->SoftBufs.ulToneEventBufferWritePtr = 0;
/* Set the interrupt manager such that the user knows that some tone events */
/* are pending in the software Q. */
pSharedInfo->IntrptManage.fToneEventsPending = TRUE;
}
else
{
/* Set the overflow flag of the buffer. */
pSharedInfo->SoftBufs.ulToneEventBufferOverflowCnt++;
}
}
}
}
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ToneDetectionDisableSer
Description: Disable the generation of events for a selected tone on the
specified channel.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectDisable Pointer to tOCT6100_TONE_DETECTION_DISABLE structure.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ToneDetectionDisableSer
UINT32 Oct6100ToneDetectionDisableSer(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN tPOCT6100_TONE_DETECTION_DISABLE f_pToneDetectDisable )
{
UINT32 ulChanIndex;
UINT32 ulExtToneChanIndex;
UINT32 ulToneEventNumber = 0;
UINT32 ulResult;
BOOL fDisableAll;
/* Check the user's configuration of the tone detection disable structure for errors. */
ulResult = Oct6100ApiAssertToneDetectionParams(
f_pApiInstance,
f_pToneDetectDisable,
&ulChanIndex,
&ulToneEventNumber,
&ulExtToneChanIndex,
&fDisableAll );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Clear the event to detect the specified tone. */
ulResult = Oct6100ApiClearToneDetectionEvent(
f_pApiInstance,
ulChanIndex,
ulToneEventNumber,
ulExtToneChanIndex,
fDisableAll );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Update the channel structure to indicate that the tone is no longer detected. */
ulResult = Oct6100ApiReleaseToneDetectionEvent(
f_pApiInstance,
ulChanIndex,
ulToneEventNumber,
ulExtToneChanIndex,
fDisableAll );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiAssertToneDetectionParams
Description: Check the validity of the tone detection disable command.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_pToneDetectDisable Pointer to tone detection disable structure.
f_pulChannelIndex Pointer to the channel index
f_pulToneEventNumber Pointer to the tone event number.
f_pulExtToneChanIndex Pointer to the extended channel index.
f_pfDisableAll Pointer to the flag specifying whether all tones
should be disabled.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiAssertToneDetectionParams
UINT32 Oct6100ApiAssertToneDetectionParams(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN tPOCT6100_TONE_DETECTION_DISABLE f_pToneDetectDisable,
OUT PUINT32 f_pulChannelIndex,
OUT PUINT32 f_pulToneEventNumber,
OUT PUINT32 f_pulExtToneChanIndex,
OUT PBOOL f_pfDisableAll )
{
tPOCT6100_API_CHANNEL pEchoChannel;
UINT32 ulEntryOpenCnt;
UINT32 i;
/*=====================================================================*/
/* Check the echo channel handle. */
if ( (f_pToneDetectDisable->ulChannelHndl & cOCT6100_HNDL_TAG_MASK) != cOCT6100_HNDL_TAG_CHANNEL )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
*f_pulChannelIndex = f_pToneDetectDisable->ulChannelHndl & cOCT6100_HNDL_INDEX_MASK;
if ( *f_pulChannelIndex >= f_pApiInstance->pSharedInfo->ChipConfig.usMaxChannels )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
mOCT6100_GET_CHANNEL_ENTRY_PNT( f_pApiInstance->pSharedInfo, pEchoChannel, *f_pulChannelIndex )
/* Extract the entry open count from the provided handle. */
ulEntryOpenCnt = (f_pToneDetectDisable->ulChannelHndl >> cOCT6100_ENTRY_OPEN_CNT_SHIFT) & cOCT6100_ENTRY_OPEN_CNT_MASK;
/* Check for errors. */
if ( pEchoChannel->fReserved != TRUE )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_NOT_OPEN;
if ( ulEntryOpenCnt != pEchoChannel->byEntryOpenCnt )
return cOCT6100_ERR_TONE_DETECTION_CHANNEL_HANDLE_INVALID;
/* Return the extended channel index. */
*f_pulExtToneChanIndex = pEchoChannel->usExtToneChanIndex;
/* Check the disable all flag. */
if ( f_pToneDetectDisable->fDisableAll != TRUE && f_pToneDetectDisable->fDisableAll != FALSE )
return cOCT6100_ERR_TONE_DETECTION_DISABLE_ALL;
/*=====================================================================*/
/* Check the tone information. */
/* Find out if the tone is present in the build. */
if ( f_pToneDetectDisable->fDisableAll == FALSE )
{
for ( i = 0; i < cOCT6100_MAX_TONE_EVENT; i++ )
{
if ( f_pApiInstance->pSharedInfo->ImageInfo.aToneInfo[ i ].ulToneID == f_pToneDetectDisable->ulToneNumber )
{
*f_pulToneEventNumber = i;
break;
}
}
/* Check if tone is present. */
if ( i == cOCT6100_MAX_TONE_EVENT )
return cOCT6100_ERR_NOT_SUPPORTED_TONE_NOT_PRESENT_IN_FIRMWARE;
/* Check if the requested tone is actually detected. */
if ((( pEchoChannel->aulToneConf[ *f_pulToneEventNumber / 32 ] >> ( 31 - ( *f_pulToneEventNumber % 32 ))) & 0x1) == 0 )
return cOCT6100_ERR_TONE_DETECTION_TONE_NOT_ACTIVATED;
}
/*=====================================================================*/
/* Return the disable all flag as requested. */
*f_pfDisableAll = f_pToneDetectDisable->fDisableAll;
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiClearToneDetectionEvent
Description: Clear the buffer playout event in the channel main structure.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulChannelIndex Index of the channel within the API's channel list.
f_ulToneEventNumber Tone event number to be deactivated.
f_ulExtToneChanIndex Index of the extended tone detection channel.
f_fDisableAll Clear all activated tones.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiClearToneDetectionEvent
UINT32 Oct6100ApiClearToneDetectionEvent(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulChannelIndex,
IN UINT32 f_ulToneEventNumber,
IN UINT32 f_ulExtToneChanIndex,
IN BOOL f_fDisableAll )
{
tPOCT6100_SHARED_INFO pSharedInfo;
tOCT6100_WRITE_PARAMS WriteParams;
tOCT6100_READ_PARAMS ReadParams;
tOCT6100_WRITE_SMEAR_PARAMS SmearParams;
UINT32 ulResult;
UINT32 ulToneEventBaseAddress;
UINT16 usReadData;
/* Obtain local pointer to shared portion of instance. */
pSharedInfo = f_pApiInstance->pSharedInfo;
ReadParams.pProcessContext = f_pApiInstance->pProcessContext;
ReadParams.ulUserChipId = pSharedInfo->ChipConfig.ulUserChipId;
ReadParams.pusReadData = &usReadData;
WriteParams.pProcessContext = f_pApiInstance->pProcessContext;
WriteParams.ulUserChipId = pSharedInfo->ChipConfig.ulUserChipId;
SmearParams.pProcessContext = f_pApiInstance->pProcessContext;
SmearParams.ulUserChipId = pSharedInfo->ChipConfig.ulUserChipId;
/*=======================================================================*/
/* Read the current event config about to be modified. */
ulToneEventBaseAddress = pSharedInfo->MemoryMap.ulChanMainMemBase + ( f_ulChannelIndex * pSharedInfo->MemoryMap.ulChanMainMemSize );
ulToneEventBaseAddress += cOCT6100_CH_MAIN_TONE_EVENT_OFFSET;
/* Check if must disable all tone events or not. */
if ( f_fDisableAll == FALSE )
{
ReadParams.ulReadAddress = ulToneEventBaseAddress;
ReadParams.ulReadAddress += (f_ulToneEventNumber / 16) * 2;
mOCT6100_DRIVER_READ_API( ReadParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Clear the event in the channel main memory.*/
WriteParams.ulWriteAddress = ReadParams.ulReadAddress;
WriteParams.usWriteData = usReadData;
WriteParams.usWriteData &= (~( 0x1 << ( 15 - ( f_ulToneEventNumber % 16 ))));
mOCT6100_DRIVER_WRITE_API( WriteParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
else /* if ( f_fDisableAll == TRUE ) */
{
/* Clear all events in the channel main memory. */
SmearParams.ulWriteLength = 4;
SmearParams.usWriteData = 0x0000;
SmearParams.ulWriteAddress = ulToneEventBaseAddress;
mOCT6100_DRIVER_WRITE_SMEAR_API( SmearParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
/*=======================================================================*/
/* Also program the extended channel if one is present. */
if ( f_ulExtToneChanIndex != cOCT6100_INVALID_INDEX )
{
ulToneEventBaseAddress = pSharedInfo->MemoryMap.ulChanMainMemBase + ( f_ulExtToneChanIndex * pSharedInfo->MemoryMap.ulChanMainMemSize );
ulToneEventBaseAddress += cOCT6100_CH_MAIN_TONE_EVENT_OFFSET;
/* Check if must disable all tone events or not. */
if ( f_fDisableAll == FALSE )
{
/* Read the current event config about to be modified. */
ReadParams.ulReadAddress = ulToneEventBaseAddress;
ReadParams.ulReadAddress += (f_ulToneEventNumber / 16) * 2;
mOCT6100_DRIVER_READ_API( ReadParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
/* Clear the event in the channel main memory.*/
WriteParams.ulWriteAddress = ReadParams.ulReadAddress;
WriteParams.usWriteData = usReadData;
WriteParams.usWriteData &= (~( 0x1 << ( 15 - ( f_ulToneEventNumber % 16 ))));
mOCT6100_DRIVER_WRITE_API( WriteParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
else /* if ( f_fDisableAll == TRUE ) */
{
/* Clear all events in the channel main memory.*/
SmearParams.ulWriteLength = 4;
SmearParams.usWriteData = 0x0000;
SmearParams.ulWriteAddress = ulToneEventBaseAddress;
mOCT6100_DRIVER_WRITE_SMEAR_API( SmearParams, ulResult );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
}
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiReleaseToneDetectionEvent
Description: Clear the entry made for this tone in the channel tone
enable array.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulChannelIndex Index of the channel within the API's channel list.
f_ulToneEventNumber Tone event number to be deactivated.
f_ulExtToneChanIndex Index of the extended tone detection channel.
f_fDisableAll Release all activated tones.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiReleaseToneDetectionEvent
UINT32 Oct6100ApiReleaseToneDetectionEvent (
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulChannelIndex,
IN UINT32 f_ulToneEventNumber,
IN UINT32 f_ulExtToneChanIndex,
IN BOOL f_fDisableAll )
{
tPOCT6100_API_CHANNEL pEchoChanEntry;
tPOCT6100_SHARED_INFO pSharedInfo;
UINT32 ulToneEntry;
UINT32 ulResult;
UINT32 ulToneEventNumber;
BOOL fSSTone;
/* Obtain local pointer to shared portion of instance. */
pSharedInfo = f_pApiInstance->pSharedInfo;
/* Update the channel entry. */
mOCT6100_GET_CHANNEL_ENTRY_PNT( pSharedInfo, pEchoChanEntry, f_ulChannelIndex );
/* Check if must release all tone events. */
if ( f_fDisableAll == FALSE )
{
/* Set the corresponding bit in the channel array. */
ulToneEntry = pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ];
/* Modify the entry. */
ulToneEntry &= (~( 0x1 << ( 31 - ( f_ulToneEventNumber % 32 ))));
/* Copy back the new value. */
pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ] = ulToneEntry;
}
else /* if ( f_fDisableAll == TRUE ) */
{
/* Clear all events. */
Oct6100UserMemSet( pEchoChanEntry->aulToneConf, 0x00, sizeof( pEchoChanEntry->aulToneConf ) );
}
/* Configure also the extended channel if necessary. */
if ( f_ulExtToneChanIndex != cOCT6100_INVALID_INDEX )
{
/* Update the channel entry. */
mOCT6100_GET_CHANNEL_ENTRY_PNT( pSharedInfo, pEchoChanEntry, f_ulExtToneChanIndex );
/* Check if must release all tone events. */
if ( f_fDisableAll == FALSE )
{
/* Set the corresponding bit in the channel array. */
ulToneEntry = pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ];
/* Modify the entry. */
ulToneEntry &= (~( 0x1 << ( 31 - ( f_ulToneEventNumber % 32 ))));
/* Copy back the new value. */
pEchoChanEntry->aulToneConf[ f_ulToneEventNumber / 32 ] = ulToneEntry;
}
else /* if ( f_fDisableAll == TRUE ) */
{
/* Clear all events. */
Oct6100UserMemSet( pEchoChanEntry->aulToneConf, 0x00, sizeof( pEchoChanEntry->aulToneConf ) );
}
}
/* Re-enable the SS7 tones */
for ( ulToneEventNumber = 0; ulToneEventNumber < cOCT6100_MAX_TONE_EVENT; ulToneEventNumber++ )
{
/* Check if the current tone is a SS tone. */
ulResult = Oct6100ApiIsSSTone(
f_pApiInstance,
f_pApiInstance->pSharedInfo->ImageInfo.aToneInfo[ ulToneEventNumber ].ulToneID,
&fSSTone );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
if ( fSSTone == TRUE )
{
/* Write to all resources needed to activate tone detection on this SS tone. */
ulResult = Oct6100ApiWriteToneDetectEvent(
f_pApiInstance,
f_ulChannelIndex,
ulToneEventNumber,
cOCT6100_INVALID_INDEX );
if ( ulResult != cOCT6100_ERR_OK )
return ulResult;
}
}
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiIsSSTone
Description: Check if specified tone number is a special signaling
system tone.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulToneEventNumber Tone event number to be checked against.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiIsSSTone
UINT32 Oct6100ApiIsSSTone(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulToneEventNumber,
OUT PBOOL f_fSSTone )
{
*f_fSSTone = FALSE;
switch( f_ulToneEventNumber )
{
case cOCT6100_TONE_SIN_SYSTEM7_2000 :
case cOCT6100_TONE_SIN_SYSTEM7_1780 :
case cOCT6100_TONE_ROUT_G168_2100GB_ON :
case cOCT6100_TONE_ROUT_G168_2100GB_WSPR :
case cOCT6100_TONE_ROUT_G168_1100GB_ON :
case cOCT6100_TONE_ROUT_G168_2100GB_ON_WIDE_A :
case cOCT6100_TONE_ROUT_G168_2100GB_ON_WIDE_B :
case cOCT6100_TONE_ROUT_G168_2100GB_WSPR_WIDE :
case cOCT6100_TONE_SOUT_G168_2100GB_ON :
case cOCT6100_TONE_SOUT_G168_2100GB_WSPR :
case cOCT6100_TONE_SOUT_G168_1100GB_ON :
case cOCT6100_TONE_SOUT_G168_2100GB_ON_WIDE_A :
case cOCT6100_TONE_SOUT_G168_2100GB_ON_WIDE_B :
case cOCT6100_TONE_SOUT_G168_2100GB_WSPR_WIDE :
case cOCT6100_TONE_SIN_SYSTEM5_2400 :
case cOCT6100_TONE_SIN_SYSTEM5_2600 :
case cOCT6100_TONE_SIN_SYSTEM5_2400_2600 :
*f_fSSTone = TRUE;
break;
default:
break;
}
return cOCT6100_ERR_OK;
}
#endif
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
Function: Oct6100ApiIsSSTone
Description: Check if specified tone number is a 2100 special signaling
system tone.
-------------------------------------------------------------------------------
| Argument | Description
-------------------------------------------------------------------------------
f_pApiInstance Pointer to API instance. This memory is used to keep the
present state of the chip and all its resources.
f_ulToneEventNumber Tone event number to be checked against.
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#if !SKIP_Oct6100ApiIs2100Tone
UINT32 Oct6100ApiIs2100Tone(
IN OUT tPOCT6100_INSTANCE_API f_pApiInstance,
IN UINT32 f_ulToneEventNumber,
OUT PBOOL f_fIs2100Tone )
{
*f_fIs2100Tone = FALSE;
switch( f_ulToneEventNumber )
{
case cOCT6100_TONE_ROUT_G168_2100GB_ON :
case cOCT6100_TONE_ROUT_G168_2100GB_WSPR :
case cOCT6100_TONE_ROUT_G168_2100GB_ON_WIDE_A :
case cOCT6100_TONE_ROUT_G168_2100GB_ON_WIDE_B :
case cOCT6100_TONE_ROUT_G168_2100GB_WSPR_WIDE :
case cOCT6100_TONE_SOUT_G168_2100GB_ON :
case cOCT6100_TONE_SOUT_G168_2100GB_WSPR :
case cOCT6100_TONE_SOUT_G168_2100GB_ON_WIDE_A :
case cOCT6100_TONE_SOUT_G168_2100GB_ON_WIDE_B :
case cOCT6100_TONE_SOUT_G168_2100GB_WSPR_WIDE :
*f_fIs2100Tone = TRUE;
break;
default:
break;
}
return cOCT6100_ERR_OK;
}
#endif
|