Telephone Dialing Keypad


Speed Key Names: sdac2, telepad

The Telephone Dialing Keypad generates a permanent string that is typically connected to the Serial RAM symbol, which stores and recalls the string, and the Serial Memory Dialer, which decodes and dials the string.  

Signal name and type

Description

Serial output: <out$>

Transmits the corresponding characters as a permanent string with each rising edge of the <0> through <9>, <*> and <#> inputs, for as long as <enable> is high.

The entire string is re-transmitted with each transition. For example, if the inputs form the string "6532", the output will first send "6", then "65", then "653" and finally "6532".

This output is typically connected to the <in$> input of the Serial Memory Dialer. The output can also be connected to the <in$/out$> input of the Serial RAM symbol to store the string in NVRAM. The signal name must be the same in all three symbols.

If there is an accumulated string when <enable> goes low, the string is retained and re-transmitted when <enable> goes high again.

The string length is determined by <#chars>. If more digits are entered than what is specified in <#chars>, the extra digits are ignored.

The digital transitions are formatted into bytes as follows:

<0> = \x00

<1> = \x01

<2> = \x02

<3> = \x03

<4> = \x04

<5> = \x05

<6> = \x06

<7> = \x07

<8> = \x08

<9> = \x09

<*> = \x0A

<#> = \x0B

Thus dialing the following number: *#912017673400

Will result in the following string on <out$>: \x0A\x0B\x09\x01\x02\x00\x01\x07\x06\x07\x03\x04\x00\x00

Digital input: <clear>

Clears the contents of the numeric keypad and transmits a null string on the rising edge of the input.

The input has no effect when <enable> is low.

High/1 (rising edge) = Clear; Low/0 = No effect

Digital input: <enable>

Enables the telephone dialing keypad for as long as the input is high. When the input is low, all digital inputs are ignored and no string is transmitted on <out$>.

If there is an accumulated string when <enable> goes low, the string is retained and re-transmitted when <enable> goes high again.

High/1 (level sensitive) = Enable keypad; Low/0 = Disable keypad

Digital input: <backspace>

Transmits a backspace character on the rising edge of the input. This removes the previously accumulated character, which allows the end user to edit an entry without need to clear the entire sequence.

The input has no effect when <enable> is low.

High/1 (rising edge) = Backspace (remove previous character); Low/0 = No effect

Digital inputs: <0> through <9>, <*>, <#>

Transmits the corresponding character on the rising edge of the input. The transitions are sent as a permanent string on <out$>; the entire string is re-transmitted with each transition. For example, if the inputs form the string "6532", the output will first send "6", then "65", then "653" and finally "6532".

The input has no effect when <enable> is low.

High/1 (rising edge) = Send character; Low/0 = No effect

Single-precision parameter: <#chars>

Sets the maximum number of characters that can be accumulated into the <out$> string.

If more digits are entered than what is specified in <#chars>, the extra digits are ignored.

This parameter value should match the <#chars> parameter in the Serial RAM symbol.