Arduino: Help Me For Interfacing Arduino With AMTP32M VOICE IC
Arduino: Help Me For Interfacing Arduino With AMTP32M VOICE IC
Sign up to join this community The best answers are voted up and
rise to the top
Arduino
i'm trying to get control an Aplus chip aMTP32M (stores audio samples) with Arduino . this amtp32m ic provide CPU
SERIAL MODE its come with DATA and CLOCK pin.i try Spi mode with Amtp32m ic but its not working.
1
Please help me for this. Link for for DATASHEET of AMTP32M IC -
http://www.aplusinc.com.tw/proimages/Mtp%20Vioce%20Ic/aMTP32M/aMTP32M/Datasheet/aMTPxxM-
Datasheet_V1.1_20141216.pdf
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Arun
31 3
Add a comment
Finely i try the below code for serial mode. it's worked perfectly...
SectionNo.BYTE = Val;
CLOCK = 1;
DATA = 0;
CLOCK = 0;
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
DATA = SectionNo.BIT0;
CLOCK = 1;
CLOCK = 0;
DATA = SectionNo.BIT1;
CLOCK = 1;
CLOCK = 0;
Add a comment
according to this :
it's more similar to I2C than SPI. anyway, it's just 2 wire custom serial interface. you can use any 2 GPIOs for this
purpose. for sending a byte, you have to:
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
3. wait at least 1us (according to datasheet ver 1.1, page 18) then set CLK_IO low.
5. toggle the CLK_IO (set it high, wait at leas 1us, set it low)
thank you for your replay.i will try your suggestions. – Arun Sep 10 '20 at 6:18
1 According to datasheet page 25, it would be much easier to use the Parallel mode than the Serial mode. – hcheung Sep 12 '20 at
0:23
hcheung..Yes parallel mode is much easier .but it's give only 32 sections for audio storage. in serial mode it give 255 sections for
audio storage. – Arun Sep 17 '20 at 8:36
Add a comment
Your Answer
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Sign up or log in
Sign up using Google
Post as a guest
Name
Email
Required, but never shown
Post Your Answer By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Not the answer you're looking for? Browse other questions tagged arduino-uno arduino-ide spi or ask your own
question.
Featured on Meta
Related
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Hot Network Questions
Meaning of "-0.0" in Python?
Build me a room
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
How do I play this chord with an overlapping sharp
and flat?
Question feed
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD