Difference between revisions of "Dk'tronics Speech Synthesizer"

From CPCWiki - THE Amstrad CPC encyclopedia!
Jump to: navigation, search
(Supported Games)
(Links)
Line 181: Line 181:
 
*{{CPCPower|4724}}
 
*{{CPCPower|4724}}
  
[[Category:Peripherals]] [[Category:Music and sound]] [[Category:Manual]]
+
[[Category:FutureOS]]
 +
[[Category:Manual]]
 +
[[Category:Music and sound]]  
 +
[[Category:Peripherals]]

Revision as of 08:48, 11 February 2018

Dk'tronics Speech Synthesizer based on SPO256-AL2 chip.

Overview

The Dk'tronics speech synthesizer came with the standard handbook which gave instructions for all Dk'tronics add-ons.

The speech synthesizer also had the classic Dk'tronics casing as all their CPC products had, with the exception of a fly-lead which could be connected to the stereo output of the CPC.

It also had two mono outputs for the supplied speakers, a volume control on the right hand side and the balance could be adjusted with a small screw-driver through a hole below the volume.

Two versions of the synthesizer were available. One where the software was supplied on a cassette and a second version with the software on an internal ROM within the unit.

When the ROM version was connected and working properly, it reported the message 'Speech ROM Ver. 1.1' on the screen.

Dk'tronics changed suppliers of the speakers more than once, so several different versions of the speakers exist, including one version with a swiveled bracket for wall or desk mounting.

Software

The software supplied on cassette or ROM gave the user 11 new RSX (bar) commands to manipulate the SPO256 either directly or using it's 'text to speech' ability (with questionable success).

The commands available :

  • |SPEAK - Loaded the ROM software, listed the commands and said the sentence 'DK'tronics speech synthesizer' (badly)
  • |SPON - Used to turn on the read buffers interrupt
  • |SPOF - You can guess what that one did yourself
  • |FEED,n - Feed data directly into the speech buffer (up to 30 comma separated values between 5 and 63)
  • |FLUS - Cleared both the speech and text buffers
  • |SPED,n - Controls the speed of the text (n being a value between 0 and 15 where 0 is the fastest speed)
  • |OUTM,1 - Redirected the print command's output to the speech to text converter
  • |OUTM,2 - Redirect both the print and all other text (List etc.) to the converter
  • |OUTM,3 - Redirected all text (as with 2), but also printed to the screen in parallel
  • |LEFT,v - Reported the available memory left in the buffer (where v is a variable)
  • |SAY, "text" - Was the standard command to send text to the synthesizer (where x is the text to be spoken)
  • PRINT "`text`" - PRINT with reversed-single-quotes, works same as |SAY
  • The cassette version seems to support only PRINT, the ROM version supports both PRINT and |SAY

However on the 464 the user was required to assign the text to a variable, whereas 664 and 6128 users could use the command directly:

464 a$="Sample text": |Say, @a$

664/6128 |Say, "Sample text"

Although the speech to text converter was very much a hit and miss affair (some words sounded perfect, whereas other words were barely recognisable), with some careful mis-spelling of words and a little speed manipulation, it was possible to achieve clear and understandable sentences.

Another method of producing speech without loading the software, was to feed the buffer directly.

This could be done by polling the address &FBFE for it to drop below the value 128 and then feeding the buffer directly by outputting a value to the same address.

This loop had to be repeated for each value.

The values (known as allophones) where included in a table in the handbook along with examples of common words.

The handbook also included programming examples in both BASIC and Assembly.

Technical

Uses I/O port: #FBFE

Port FBFEh READ:

 N/A    Status 1 (none, SP0256.Pin8 is not connected) ;SBY Pin, Standby
 bit7   Status 2 (0=Ready to Receive Data, 1=Busy)    ;LRQ Pin, Load Request
 bit6-0 Not used (garbage, probably usually high-z)

Port FBFEh WRITE:

 bit7-6 Not used (should be zero)
 bit5-0 Allophone number
  • A new allophone number can be send when Status.Bit7=0.
  • Only lower 6bit of databus are connected in the dk'tronics version.
  • The remaining upper 2bit are GNDed via a 0 Ohm resistor.

For details on the speech chip, see:

The interface does NOT contain an oscillator.

Instead, OSC1 (SP0256 Pin27) is wired to the CPC's 4MHz clock signal (Expansion port Pin50).

Thus producing shorter sounds with higher pitch as when using the recommended 3.12MHz oscillator.

Note: The |SPED command inserts a crude software-delay between the separate allophones (ie. it is NOT a hardware-feature that changes OSC1/OSC2 clock speed or so).

Software support

Games

Serious Software

Pictures

  • Note: The unit pictured has a 32Kb Eprom but the rom contents are the same as the one in the downloads below, but repeated twice.


Reviews


Other speech synthesizers for the CPC

Manual

Downloads

Links