============================GoGo 4.0 Firmware Change Log============== การแปล - ============================GoGo 4.0 Firmware Change Log============== ไทย วิธีการพูด

============================GoGo 4.

============================
GoGo 4.0 Firmware Change Log
============================

All the changes are accumulative unless noted.

June 3, 2013 - version 4.0.15

- Fixed. A motor bug that prevents motors from turning off properly.
- Added. A 0.5 delay in the boot procedure. This should help computer programs to detect a disconnect or reset
situation and terminate the com session in time before the gogo establishes a new one. This feature
is added to help, but the computer software must have code that makes use of this delay time.


Oct 29, 2012 - version 4.0.14

- Fixed. Showing text on the display module via the gogo monitor now works again. Was a bug from left over code.
- Minor code clean up.
- Fixed. A bug that sometimes leave an unused motor port on.
- Fixed. Servos now work properly again.


July 1, 2012 - version 4.0.13

- Fixed. set motor power now works correctly even when there are motor commands (on,off,thisway,thatway,rd,setpower) called repeatedly.
- Improved. Logo procedures can be downloaded when a display module is connected. I2C activity with the display is paused during a download.
Problems may still occure, but should be much less than before.
- Added. All motors are turned off when the Run button is pressed to stop the execution of a Logo procedure.


July 5, 2011 - version 4.0.12

- Changed. Logo stack size increased from 20 to 64. This should accomodate the new show-long-text
command for the 16x2 LCD display. Plus, there is still a lot of RAM left unused on the PIC.

- Added. primitives for the 16x2 Display module.
- Display long text. Now there are three display modes.
1. display short text. Display 4 characters (used with the 7-segment display)
2. display a 16-bit number.
3. display long text. Displays N number of characters

GoGo monitor will automatically choose which mode to use depending on the syntax used:
show sensor1 -> will use mode 2
show "hiho -> One double quote will use mode 1
show "hello" -> Two double quotes will use mode 3

- Other display primitives

cls - clears the screen
getpos - returns the position of the cursor
setpos - sets the positon of the cursor

talk_to_7seg_1
talk_to_7seg_2
talk_to_LCD_1
talk_to_LCD_2

Normally the gogo will auto discover which display module is attached. But these four commands
disables the auto discover feature and allows the user to manually activate a display. This is
useful when using more than one display module at the same time.

version 4.0.11 (internal release)
- Added. A new "extended command" mode for tethered commands. This mode allows for more commands
to be added and doing so in a more flexible way. I.e. the ext command can be N bytes long if need be.

- Added. A get / set RTC has been added as an extended command of the tethered mode. It allows the
gogo monitor software on the computer to retrieve date and time info from the RTC module. The monitor
can also update the date/time as well.

- Added. Dedicated 'show' routines for the 7-segment display module. The module was previously
controlled by individual Logo i2c commands which often causes errors when there is a lot of
i2c traffic. Which these dedicated routines, the display procedure is more compact and
works faster.

- Added. Primitives to support the Real Time Clock module. These commands allow access to both
date and time. The commands are:
- second, mintue, hour
- day, month, year, dow (day-of-week)
All commands return an integer.


version 4.0.10 (internal release)
- Fixed. Bug where the SWITCH command would return "false" when a button is pressed.
Now it returns "true" as it should.

- Fixed. Bug where motor would behave erratically when "setpower" is executed repetitively
with no delay.

- Fixed. SETDP bug that would set the pointer x2 the location it should.
*Note. SETDP was missing from the gogo monitor in the past unknown releases.
It was added in GoGo Monitor v 4.3.4



Aug 2, 2010 version 4.0.9
- Now the board beeps properly when Logo code download is finished.



Aug 1, 2010 version 4.0.8 (internal release)

- Fixed a serious problem that causes the board's memory to often become
corrupted after powering down.
- Fixed record/recall bug. Both commands now work.




July 30, 2010 version 4.0.7 (internal release)

- Added self updating. Now the gogoboard firmware can be updated without
physically removing the PIC. It can be done using the firmware downloader
software. It is a two step process:

1. Download the bootloader. This loader will be written to the
data area of the gogo.
2. Download the updated firmware. The looader from 1 will write
the new firmware over the old.



July 25, 2010 version 4.0.6 (internal release)

- Fixed a motor power level bug that caused incorrect power settings.

Case 1: when selecting power level 7 after previously selecting
another power level will turn off the motor.

Case 2: Selecting power level 0 does not work in some cases. The motor
turns at its maximum power instead.



June 6, 2010 version 4.0.5

- Fixed a flash write problem that prevented the board from recieving
Logo code that is longer than 256 bytes.
- Hopfully this will fix the random flash memory corruption problem
as well. This is unverified.


Feb 9, 2010 version 4.0.3

- Fixed a conceptual bug that prevented Logo procedures to function
when the gogo is reset.

This is due to the fact that the gogo waits for a USB connection
very time it boots. If the user does not open the virtual com port
then the gogo firmware will block.

Fixed by using a non-blocking method to check USB connection. The
init_usb() was replaced with init_usb_cs() and usb_task() was called
periodically in the gogo's main loop. See usb.h for a description of
these commands.



============================
GoGo 3.5 Firmware Change Log
============================

ms 3 March 16, 2007

- First firmware to support the 18F458 chip. The code now
has many "#if defined" segments that allows different
code for both the 14 and 16 bit parts (16F and 18F series)
to reside in the same files.

- The 18F458 chip has a larger flash memory (16K words) which allows
the data logging stuff to be stored on-chip. That means,
no external EEPROM chip is required!


ms 2 March 14, 2007

- Ported the serial port related routines to use
only CCS's primitives.
- Removed all the direct register access code. This
should allow for more portability


ms 1

- Added code to turn on and off the motor
driver chips as needed. It uses the
board's transistors to do the job.



============================
GoGo 3.0 Firmware Change Log
============================

ms3b September 17, 2006

- Fixed a bug that prevents logo procedures
to be downloaded correctly.

- Fixed a minor bug that prevents the
burst mode from sustaning after a
command was received within the
monitor program.


ms3 August 1, 2005

- Added I2C primitives to the Cricket
Logo Interpreter.
- I2C Start
- I2C Stop
- I2C Write
- I2C Read




ms2 July 22, 2005

- Added four I2C primitives.
- I2C Start
- I2C Stop
- I2C write
- I2C Read



ms1 April 14, 2005

- Migrated from gogo 2.3 firmware ms3. It is basically the
excact same firmware.




==========
Older Logs
==========

GoGo 2.3 Firmware Change Log


ms3 March 12, 2005

- Fixed a bug in the "waituntil" CricketLogo command
that caused an unpredictable behavior when reading
sensor values (i.e. waituntil [sensor1 < 800]


ms2 Oct 23, 2004

- Fixed a bug that prevented the servo to work in
Cricket Logo.

- Removed the sensor readMax/readMin commands.There is
no need for it anymore since our MW library now works
fast enough

- Added EEPROM upload support

- Now current data record location will not be lost upon
power loss or reset. That is, if you accidently reset
the board your code will continue to append data instead
of overwriting the old. This assumes the user code does not
reset the pointer (resetdp command)



ms1 Sep 14, 2004

- Updated the Motor control procedures to work with the
gogo 2.3 board design. It is a slightly less optimal
algorithm. But we trade this with the ability to have
a one-sided PCB.

- Set PWM duty cycle command added.

- Increased the delay time for ADC channel switching
from 10 us to 50 us. This delay is more stable.



GoGo 2.2 Firmware Change Log
===============================================


ms6 Aug 10, 2004

- Optimizations:
-- Decreased the delay time for ADC channel switching
from 1 ms to 10 us.
-- Burst mode code now reads from ADC only when it has to.




ms5 May 7, 2004

- Added support for Servo Motors (not yet supported in tethered mode).

- Cricket Logo code is now stored in the PIC's flash memeory.
This means the EEPROM chip becomes optional. It is need
if you use arrays, data logging commands (record, recall).
The code length, however, is now limited to 256 bytes.

- PWM generaltion has been rewritten. This was done to support
servo motors but it also improves the performance of the
setmotor power command as well.




ms4 Nov 27, 2003

- Fixed a bug in the Cricket Logo RUN command.
Now the interactive mode works (i.e. typing
beep in the command center of Jackal).

- Added NEWIR and IR command support to Cricket Logo.
We replace IR with the serial comm, of course.

** As a result of this support, the board now echos
every byte it receives from the computer. This is
now the Cricket works and some interfaces expect
the echo byte (i.e. Microworlds EX). This should not
cause any problems with existing GoGo software.

- Microworlds EX Robotics Edition compatibility issues.

- Sometimes EX doesn't write the default initial call
procedure. An init call is now written by default.

- Sometime MW EX doesn't update the RUN button vector.
the vector now points to the defa
0/5000
จาก: -
เป็น: -
ผลลัพธ์ (ไทย) 1: [สำเนา]
คัดลอก!
============================โบเฟิร์มแวร์ 4.0 เปลี่ยนล็อก============================การเปลี่ยนแปลงปัจจุบันเว้นแต่จะระบุไว้ได้ 3 มิถุนายน 2013 - รุ่น 4.0.15-คงที่ ปัญหารถยนต์ที่ทำให้มอเตอร์เปิดปิดอย่างถูกต้อง-เพิ่ม หน่วงเวลา 0.5 ในขั้นตอนการเริ่มต้นระบบ นี้จะช่วยให้โปรแกรมคอมพิวเตอร์เพื่อตรวจหาการยก หรือตั้งค่าใหม่ สถานการณ์ และสิ้นสุดเซสชัน com ในเวลาก่อนโบสร้างใหม่ คุณลักษณะนี้ เพิ่มวิธีใช้ แต่คอมพิวเตอร์ต้องมีรหัสซอฟต์แวร์ที่ทำให้ใช้เวลาระหว่างนี้29 ตุลาคม 2012 - รุ่น 4.0.14-คงที่ แสดงข้อความบนโมดูลแสดงผลผ่านจอภาพโบตอนนี้ทำงานอีก มีข้อผิดพลาดจากซ้ายโค้ด-รหัสรองล้าง-คงที่ เป็นปัญหาที่บางครั้งปล่อยให้ท่ามอเตอร์ไม่ได้ใช้ใน -คงที่ Servos ตอนนี้ได้อีก1 กรกฎาคม 2012 - รุ่น 4.0.13-คงที่ ตั้งมอเตอร์ตอนนี้ทำงานได้อย่างถูกต้องเมื่อมีมอเตอร์คำสั่ง (ใน ปิด thisway, thatway ถนน setpower) เรียกซ้ำ ๆ-ปรับปรุง สามารถดาวน์โหลดโลโก้ตอนเมื่อเชื่อมต่อโมดูลแสดง กิจกรรม I2C กับการแสดงผลถูกหยุดชั่วคราวในระหว่างการดาวน์โหลด ปัญหาอาจยังคง occure แต่ควรจะน้อยกว่าก่อนการ-เพิ่ม รถยนต์ทั้งหมดจะถูกปิดเมื่อมีกดปุ่มเรียกใช้เพื่อหยุดทำงานของกระบวนงานโลโก้5 กรกฎาคม 2011 - รุ่น 4.0.12-การเปลี่ยนแปลง โลโก้กองขนาดเพิ่มขึ้นจาก 20 64 นี้ควรรองรับการดูลองข้อความใหม่ คำสั่งสำหรับจอแสดงผล LCD 16 x 2 พลัส ยังมีมากของ RAM ที่ทิ้งไม่ได้ใช้รูปภาพ-เพิ่ม นำสำหรับโมดูจอแสดงผล 16 x 2 -แสดงข้อความที่ยาว ตอนนี้มีสามโหมดการแสดงผล 1. แสดงข้อความสั้น แสดงอักขระ 4 (ใช้กับการแสดงผล 7 ส่วน) 2. แสดงตัวเลข 16 บิต 3. แสดงข้อความที่ยาว แสดง N จำนวนของอักขระ จอเกสต์จะเลือกโหมดที่ใช้ขึ้นอยู่กับไวยากรณ์ที่ใช้: โดยอัตโนมัติ ดู sensor1 -> จะใช้โหมด 2 แสดง " hiho -> หนึ่งพูดจะใช้โหมด 1 แสดง "สวัสดีค่ะ" -> สองอัญประกาศจะใช้โหมด 3 -นำแสดงอื่น ๆ มหาชน - ล้างหน้าจอ getpos - ส่งกลับค่าตำแหน่งของเคอร์เซอร์ setpos - กำหนด positon ของเคอร์เซอร์ talk_to_7seg_1 talk_to_7seg_2 talk_to_LCD_1 talk_to_LCD_2 โดยปกติโกโก้จะอัตโนมัติค้นพบโมดูลที่แสดงอยู่ แต่เหล่านี้สี่คำสั่ง ปิดใช้งานอัตโนมัติค้นพบลักษณะการทำงาน และช่วยให้ผู้ใช้สามารถเรียกใช้การแสดงด้วยตนเอง นี่คือ มีประโยชน์เมื่อใช้โมดูลแสดงผลมากกว่าหนึ่งในเวลาเดียวกันรุ่น 4.0.11 (รุ่นภายใน)-เพิ่ม ใหม่ "ขยายคำสั่ง" โหมดสำหรับคำสั่งคุณ โหมดนี้ช่วยให้สำหรับคำสั่งเพิ่มเติม ที่จะเพิ่ม และทำให้มีความยืดหยุ่นในการ เช่นคำสั่งต่อได้ไบต์ N ยาวถ้าจำเป็น-เพิ่ม ได้รับ / RTC ตั้งถูกเพิ่มเป็นคำสั่งการเพิ่มเติมโหมดคุณ จะช่วยให้การ ซอฟต์แวร์ตรวจสอบโบบนคอมพิวเตอร์เพื่อดึงข้อมูลวันและเวลาจากโมดูล RTC จอภาพ นอกจากนี้ยังสามารถปรับปรุงวัน / เวลาเป็นอย่างดี-เพิ่ม เฉพาะคำสั่ง 'แสดง' สำหรับโมดูลการแสดงผล 7 ส่วน มีโมดูลก่อนหน้านี้ ควบคุม โดยคำสั่ง i2c โลโก้แต่ละที่มักจะเกิดข้อผิดพลาดเมื่อมีเป็นจำนวนมาก ปริมาณการใช้ i2c ซึ่งเหล่านี้ทุ่มเทงานประจำ วิธีการแสดงมีขนาดเล็กมาก และ ทำงานได้เร็วขึ้น-เพิ่ม นำไปสนับสนุนโมดูนาฬิกาเวลาจริง คำสั่งเหล่านี้อนุญาตให้เข้าถึงทั้ง วันและเวลา คำสั่งคือ: -สอง mintue ชั่วโมง -วัน เดือน ปี ดาว (วันของสัปดาห์) คำสั่งทั้งหมดกลับเป็นเลขจำนวนเต็มรุ่น 4.0.10 (นำออกใช้ภายใน)-คงที่ ข้อผิดพลาดซึ่งคำสั่งสวิตช์จะกลับ "เท็จ" เมื่อกดปุ่ม ตอนนี้ จะส่งกลับค่า "จริง" ตามที่ควร-คงที่ ข้อบกพร่องที่มอเตอร์จะทำงานผิดเวลา "setpower" ดำเนินการเปลือง หน่วงเวลาไม่-คงที่ บัก SETDP ที่จะตั้งค่าตัวชี้ x 2 ตำแหน่งควร * หมายเหตุ SETDP ได้หายไปจากจอ gogo ในอดีตไม่ทราบรุ่น มีเพิ่มจอภาพโบวี 4.3.42 สิงหาคม 2010 รุ่น 4.0.9 -คณะกรรมการส่งเสียงเตือนได้อย่างถูกต้องเมื่อโลโก้รหัสดาวน์โหลดเสร็จ1 สิงหาคม 2010 รุ่น 4.0.8 (รุ่นภายใน)-แก้ไขปัญหาร้ายแรงที่ทำให้หน่วยความจำของบอร์ดมักจะเป็น เสียหายหลังจากเปิดลง -ถาวรบันทึก/เรียกคืนข้อผิดพลาด คำสั่งทั้งที่ตอนนี้ทำงาน30 กรกฎาคม 2010 รุ่น 4.0.7 (นำออกใช้ภายใน)-ปรับปรุงตนเองเพิ่ม ตอนนี้ เฟิร์มแวร์ gogoboard สามารถปรับปรุงโดย จริงเอารูปภาพ สามารถทำได้โดยใช้การดาวน์โหลดเฟิร์มแวร์ software. It is a two step process: 1. Download the bootloader. This loader will be written to the data area of the gogo. 2. Download the updated firmware. The looader from 1 will write the new firmware over the old. July 25, 2010 version 4.0.6 (internal release)- Fixed a motor power level bug that caused incorrect power settings. Case 1: when selecting power level 7 after previously selecting another power level will turn off the motor. Case 2: Selecting power level 0 does not work in some cases. The motor turns at its maximum power instead.June 6, 2010 version 4.0.5- Fixed a flash write problem that prevented the board from recieving Logo code that is longer than 256 bytes.- Hopfully this will fix the random flash memory corruption problem as well. This is unverified.Feb 9, 2010 version 4.0.3- Fixed a conceptual bug that prevented Logo procedures to function when the gogo is reset. This is due to the fact that the gogo waits for a USB connection very time it boots. If the user does not open the virtual com port then the gogo firmware will block. Fixed by using a non-blocking method to check USB connection. The init_usb() was replaced with init_usb_cs() and usb_task() was called periodically in the gogo's main loop. See usb.h for a description of these commands.============================GoGo 3.5 Firmware Change Log============================ms 3 March 16, 2007- First firmware to support the 18F458 chip. The code now has many "#if defined" segments that allows different code for both the 14 and 16 bit parts (16F and 18F series) to reside in the same files.- The 18F458 chip has a larger flash memory (16K words) which allows the data logging stuff to be stored on-chip. That means, no external EEPROM chip is required!ms 2 March 14, 2007- Ported the serial port related routines to use only CCS's primitives.- Removed all the direct register access code. This should allow for more portabilityms 1- Added code to turn on and off the motor driver chips as needed. It uses the board's transistors to do the job.============================GoGo 3.0 Firmware Change Log============================ms3b September 17, 2006- Fixed a bug that prevents logo procedures to be downloaded correctly.- Fixed a minor bug that prevents the burst mode from sustaning after a command was received within the monitor program.ms3 August 1, 2005- Added I2C primitives to the Cricket Logo Interpreter. - I2C Start - I2C Stop - I2C Write - I2C Readms2 July 22, 2005- Added four I2C primitives. - I2C Start - I2C Stop - I2C write - I2C Readms1 April 14, 2005- Migrated from gogo 2.3 firmware ms3. It is basically the excact same firmware.==========Older Logs==========GoGo 2.3 Firmware Change Logms3 March 12, 2005- Fixed a bug in the "waituntil" CricketLogo command that caused an unpredictable behavior when reading sensor values (i.e. waituntil [sensor1 < 800]ms2 Oct 23, 2004- Fixed a bug that prevented the servo to work in Cricket Logo.- Removed the sensor readMax/readMin commands.There is no need for it anymore since our MW library now works fast enough- Added EEPROM upload support- Now current data record location will not be lost upon power loss or reset. That is, if you accidently reset the board your code will continue to append data instead of overwriting the old. This assumes the user code does not reset the pointer (resetdp command)ms1 Sep 14, 2004- Updated the Motor control procedures to work with the gogo 2.3 board design. It is a slightly less optimal algorithm. But we trade this with the ability to have a one-sided PCB.- Set PWM duty cycle command added.- Increased the delay time for ADC channel switching from 10 us to 50 us. This delay is more stable.GoGo 2.2 Firmware Change Log===============================================ms6 Aug 10, 2004- Optimizations:-- Decreased the delay time for ADC channel switching from 1 ms to 10 us.-- Burst mode code now reads from ADC only when it has to.ms5 May 7, 2004- Added support for Servo Motors (not yet supported in tethered mode).- Cricket Logo code is now stored in the PIC's flash memeory. This means the EEPROM chip becomes optional. It is need if you use arrays, data logging commands (record, recall). The code length, however, is now limited to 256 bytes.- PWM generaltion has been rewritten. This was done to support servo motors but it also improves the performance of the setmotor power command as well.ms4 Nov 27, 2003- Fixed a bug in the Cricket Logo RUN command. Now the interactive mode works (i.e. typing beep in the command center of Jackal).- Added NEWIR and IR command support to Cricket Logo. We replace IR with the serial comm, of course. ** As a result of this support, the board now echos every byte it receives from the computer. This is now the Cricket works and some interfaces expect the echo byte (i.e. Microworlds EX). This should not cause any problems with existing GoGo software.- Microworlds EX Robotics Edition compatibility issues. - Sometimes EX doesn't write the default initial call procedure. An init call is now written by default. - Sometime MW EX doesn't update the RUN button vector. the vector now points to the defa
การแปล กรุณารอสักครู่..
ผลลัพธ์ (ไทย) 2:[สำเนา]
คัดลอก!
============================
GoGo 4.0 เฟิร์มแวเปลี่ยนเข้าสู่ระบบ
================= =========== การเปลี่ยนแปลงทั้งหมดที่มีสะสมยกเว้นที่ระบุไว้. 3 มิถุนายน 2013 - รุ่น 4.0.15 - คงที่ ข้อผิดพลาดที่ป้องกันไม่ให้มอเตอร์มอเตอร์จากการปิดอย่างถูกต้อง. - เพิ่ม 0.5 ความล่าช้าในขั้นตอนการบูต นี้จะช่วยให้โปรแกรมคอมพิวเตอร์ในการตรวจสอบหรือตั้งค่าการเชื่อมต่อสถานการณ์และยุติในเซสชั่นคอมเวลาก่อน Gogo สร้างใหม่ คุณลักษณะนี้จะถูกเพิ่มเข้าไปช่วย แต่ซอฟต์แวร์คอมพิวเตอร์จะต้องมีรหัสที่ทำให้การใช้เวลาที่ล่าช้านี้. 29 ตุลาคม 2012 - รุ่น 4.0.14 - แก้ไข แสดงข้อความในโมดูลการแสดงผลผ่านจอ Gogo ตอนนี้ทำงานอีกครั้ง เป็นข้อผิดพลาดจากที่เหลือรหัส. - รหัสไมเนอร์ทำความสะอาด. - คงที่ ข้อผิดพลาดที่บางครั้งออกจากพอร์ตที่ไม่ได้ใช้มอเตอร์ใน. - แก้ไข เซอร์โวตอนนี้ทำงานอย่างถูกต้องอีกครั้ง. 1 กรกฎาคม 2012 - รุ่น 4.0.13 - คงที่ ตั้งมอเตอร์ไฟฟ้าตอนนี้ทำงานได้อย่างถูกต้องเมื่อมีคำสั่งมอเตอร์ (เปิด, ปิด, thisway, thatway, ถนน setpower) เรียกซ้ำ. - ปรับปรุง ขั้นตอนโลโก้สามารถดาวน์โหลดได้เมื่อแสดงโมดูลเชื่อมต่อ กิจกรรม I2C กับจอแสดงผลจะหยุดชั่วคราวในระหว่างการดาวน์โหลด. ปัญหายังอาจเกิดขึ้นได้ แต่ควรจะมากน้อยกว่าก่อน. - เพิ่ม มอเตอร์ทั้งหมดจะถูกปิดเมื่อกดปุ่มเรียกใช้กดเพื่อหยุดการทำงานของขั้นตอนโลโก้. 5 กรกฎาคม 2011 - รุ่น 4.0.12 - เปลี่ยน ขนาดสแต็คโลโก้เพิ่มขึ้นจาก 20 ถึง 64 นี้จะรองรับการแสดงยาวข้อความใหม่คำสั่งสำหรับการ 16x2 จอ LCD นอกจากนี้ยังมีจำนวนมากของ RAM ที่เหลือไม่ได้ใช้ใน PIC. - เพิ่ม พื้นฐานสำหรับ 16x2 โมดูลแสดง. - แสดงข้อความยาว ตอนนี้มีสามโหมดการแสดงผล. 1 แสดงข้อความสั้น จอแสดงผล 4 ตัวอักษร (ใช้กับจอแสดงผล 7 ส่วน) 2 แสดงจำนวน 16 บิต. 3 แสดงข้อความยาว แสดงจำนวนของตัวละครที่ยังไม่มีการตรวจสอบโดยอัตโนมัติ GoGo จะเลือกโหมดที่จะใช้ขึ้นอยู่กับไวยากรณ์ที่ใช้: แสดง sensor1 -> จะใช้โหมด 2 แสดง "HIHO -> ราคาคู่หนึ่งจะใช้โหมด 1 แสดง "สวัสดี" -> สองราคาคู่จะ โหมดการใช้งาน 3 - พื้นฐานการแสดงผลอื่น ๆCLS - ล้างหน้าจอgetpos - กลับตำแหน่งของเคอร์เซอร์setpos - ชุด positon ของเคอร์เซอร์talk_to_7seg_1 talk_to_7seg_2 talk_to_LCD_1 talk_to_LCD_2 ปกติ Gogo รถยนต์จะค้นพบที่โมดูลการแสดงผลที่แนบมา แต่เหล่านี้สี่คำสั่ง. ปิดการใช้งาน . ค้นพบคุณลักษณะอัตโนมัติและช่วยให้ผู้ใช้เปิดใช้งานการแสดงผลด้วยตนเองนี้เป็นประโยชน์เมื่อใช้โมดูลการแสดงผลมากกว่าหนึ่งในเวลาเดียวกัน. รุ่น 4.0.11 (ปล่อยภายใน) -. เพิ่มใหม่ "คำสั่งขยายโหมด" สำหรับคำสั่งล่าม โหมดนี้จะช่วยให้คำสั่งอื่น ๆ อีกมากมายที่จะเพิ่มและทำเช่นนี้ในทางที่มีความยืดหยุ่นมากขึ้นเช่นคำสั่งต่ออาจจะไม่มีไบต์นานถ้าจำเป็นต้องเป็น.. -. เพิ่มรับ / ชุด RTC ได้ถูกเพิ่มเป็นคำสั่งขยายโหมดล่าม . จะช่วยให้ซอฟต์แวร์ระบบจอภาพ Gogo บนคอมพิวเตอร์เพื่อดึงข้อมูลวันที่และเวลาจากโมดูล RTC จอแสดงผลยังสามารถปรับปรุงวันที่ / เวลาเช่นกัน. - เพิ่ม เฉพาะ 'แสดง' การปฏิบัติสำหรับ 7 ส่วนโมดูลการแสดงผล โมดูลก่อนหน้านี้ควบคุมโดยแต่ละรูปแบบคำสั่ง I2C ซึ่งมักจะเกิดข้อผิดพลาดเมื่อมีจำนวนมากของการจราจร I2C ซึ่งทุ่มเทการปฏิบัติเหล่านี้ขั้นตอนการแสดงผลมีขนาดเล็กมากขึ้นและทำงานได้เร็วขึ้น. - ที่เพิ่มเข้ามา วิทยาการเพื่อสนับสนุนโมดูลนาฬิกาเวลาจริง คำสั่งเหล่านี้ช่วยให้เข้าถึงทั้งวันที่และเวลา คำสั่งคือ: - สอง mintue ชั่วโมง- วันเดือนปีดาวโจนส์ (วันของสัปดาห์) คำสั่งทั้งหมดกลับจำนวนเต็ม. รุ่น 4.0.10 (ปล่อยภายใน) - คงที่ ข้อผิดพลาดที่คำสั่ง SWITCH จะกลับมา "เท็จ" เมื่อกดปุ่ม. ตอนนี้มันกลับ "จริง" ตามที่ควร. - แก้ไข ข้อผิดพลาดที่มอเตอร์จะทำงานผิดพลาดเมื่อ "setpower" จะถูกดำเนินการซ้ำที่มีความล่าช้าไม่. - แก้ไข ข้อผิดพลาด SETDP ที่จะตั้งตัวชี้ x2 สถานที่ที่ควร. * หมายเหตุ . SETDP หายไปจากหน้าจออะโกโก้ในรุ่นที่ผ่านมาที่ไม่รู้จักมันถูกเพิ่มเข้ามาในการตรวจสอบ GoGo วี 4.3.4 2 สิงหาคม 2010 เวอร์ชัน 4.0.9 - ตอนนี้คณะกรรมการดังขึ้นอย่างถูกต้องเมื่อรหัสดาวน์โหลดโลโก้เสร็จสิ้น. 1 สิงหาคม 2010 รุ่น 4.0 0.8 (ปล่อยภายใน) - แก้ไขปัญหาที่ร้ายแรงที่เป็นสาเหตุของความทรงจำของคณะกรรมการที่จะมักจะกลายเป็นความเสียหายหลังจากที่เปิดเครื่องลง. - คงบันทึก / เรียกคืนข้อผิดพลาด ทั้งสองคำสั่งตอนนี้ทำงาน. 30 กรกฎาคม 2010 เวอร์ชัน 4.0.7 (ปล่อยภายใน) - เพิ่มการปรับปรุงตัวเอง ตอนนี้เฟิร์มแว gogoboard สามารถปรับปรุงได้โดยไม่ต้องถอดร่างกาย PIC ก็สามารถทำได้โดยใช้เฟิร์มแวดาวน์โหลดซอฟแวร์ มันเป็นกระบวนการขั้นตอนที่สอง: 1 ดาวน์โหลด bootloader รถตักดินแบบนี้จะถูกเขียนไปยัง พื้นที่ข้อมูล Gogo. 2 ดาวน์โหลดเฟิร์มแวปรับปรุง looader ตั้งแต่วันที่ 1 จะเขียน เฟิร์มแวใหม่กว่าเก่า. 25 กรกฎาคม 2010 เวอร์ชัน 4.0.6 (ปล่อยภายใน) - แก้ไขข้อผิดพลาดในระดับมอเตอร์ไฟฟ้าที่ก่อให้เกิดการใช้พลังงานที่ไม่ถูกต้อง. กรณีที่ 1: เมื่อมีการเลือกระดับพลังงาน 7 หลังจากที่ก่อนหน้าเลือกอื่น ระดับพลังงานจะปิดมอเตอร์. กรณีที่ 2: การเลือกระดับพลังงาน 0 ไม่ทำงานในบางกรณี มอเตอร์. เปลี่ยนที่อำนาจสูงสุดแทน6 มิถุนายน 2010 เวอร์ชัน 4.0.5 - แก้ไขปัญหาการเขียนแฟลชที่ทำให้คณะกรรมการจากการ recieving รหัสโลโก้ที่มีความยาวกว่า 256 ไบต์. - Hopfully นี้จะแก้ไขหน่วยความจำแฟลชแบบสุ่มปัญหาการทุจริตเป็น ดี นี่คือที่ไม่ได้ยืนยัน. 9 กุมภาพันธ์ 2010 เวอร์ชัน 4.0.3 - แก้ไขข้อผิดพลาดที่ทำให้ความคิดวิธีการทำงานรูปแบบ. เมื่อ Gogo ถูกรีเซ็ตเพราะนี่คือความจริงที่ว่ารอ Gogo สำหรับการเชื่อมต่อ USB ใช้เวลานานมากรองเท้ามัน หากผู้ใช้ไม่ได้เปิดคอมพอร์ตเสมือนแล้วเฟิร์มแว Gogo จะป้องกัน. คงที่โดยใช้วิธีการที่ไม่ปิดกั้นที่จะตรวจสอบการเชื่อมต่อ USB init_usb () ถูกแทนที่ด้วย init_usb_cs () และ usb_task () ถูกเรียกว่าเป็นระยะ ๆ ในวงหลักของ Gogo ดู usb.h สำหรับรายละเอียดของคำสั่งเหล่านี้. ============================ GoGo 3.5 เฟิร์มแวเปลี่ยนเข้าสู่ระบบ====== ====================== มิลลิวินาที 3 16 มีนาคม 2007 - เฟิร์มเป็นครั้งแรกที่จะสนับสนุนชิป 18F458 รหัสตอนนี้มีหลายคน "# ถ้ากำหนด" ส่วนที่ช่วยให้ที่แตกต่างกันสำหรับทั้ง 14 และ 16 ส่วนบิต (16F และ 18F ชุด) จะอาศัยอยู่ในไฟล์เดียวกัน. - ชิป 18F458 มีหน่วยความจำแฟลชขนาดใหญ่ (16K คำ) ซึ่ง ช่วยให้สิ่งที่เข้าสู่ระบบข้อมูลจะถูกเก็บไว้บนชิป ซึ่งหมายความว่าไม่มีชิป EEPROM ภายนอกจะต้อง! มิลลิวินาที 2 14 มีนาคม 2007 - รังเพลิงพอร์ตอนุกรมการปฏิบัติที่เกี่ยวข้องกับการใช้เพียงพื้นฐานของ CCS. - ออกทุกรหัสการลงทะเบียนโดยตรง นี้จะช่วยให้หาข้อมูลเพิ่มเติมพกพา1 มิลลิวินาที- รหัสเพิ่มเข้ามาเพื่อเปิดและปิดมอเตอร์ชิปขับตามความจำเป็น จะใช้ทรานซิสเตอร์ของคณะกรรมการที่จะทำผลงานได้. ============================ GoGo 3.0 เฟิร์มแวเปลี่ยนเข้าสู่ระบบ======= ===================== ms3b 17 กันยายน 2006 - แก้ไขข้อผิดพลาดที่ป้องกันไม่ให้ขั้นตอนโลโก้ให้ดาวน์โหลดอย่างถูกต้อง. - แก้ไขข้อผิดพลาดเล็ก ๆ น้อย ๆ ที่ป้องกันไม่ให้โหมดระเบิดจาก sustaning หลังจากคำสั่งที่ได้รับภายในโปรแกรมตรวจสอบ. MS3 1 สิงหาคม 2005 - เพิ่มวิทยาการ I2C กับคริกเก็ตล่ามโลโก้. - I2C เริ่มต้น- I2C หยุด- I2C เขียน- อ่าน I2C MS2 22 กรกฎาคม 2005 - เพิ่มสี่วิทยาการ I2C. - I2C เริ่มต้น- I2C หยุด- I2C เขียน- อ่าน I2C MS1 14 เมษายน 2005 - อพยพมาจาก gogo 2.3 เฟิร์มแว MS3 มันเป็นพื้นเดียวกันเฟิร์มแว excact. ========== บันทึกเก่า========== GoGo 2.3 เฟิร์มแวเปลี่ยนเข้าสู่ระบบMS3 12 มีนาคม 2005 - แก้ไขข้อผิดพลาดใน "waituntil" CricketLogo คำสั่งที่ทำให้เกิดพฤติกรรมไม่แน่นอนเมื่อมีการอ่านค่าเซ็นเซอร์ (เช่น waituntil [sensor1 <800] MS2 23 ตุลาคม 2004 - แก้ไขข้อผิดพลาดที่ทำให้เซอร์โวจะทำงานในคริกเก็ตรูปแบบ. - ลบเซ็นเซอร์ readMax / readMin commands.There คือไม่จำเป็นต้อง สำหรับมันอีกต่อไปตั้งแต่ห้องสมุดเมกะวัตต์ของเราตอนนี้ทำงานเร็วพอ- เพิ่มการสนับสนุนการอัปโหลด EEPROM - ตอนนี้สถานที่บันทึกข้อมูลในปัจจุบันจะไม่สูญหายไปเมื่อ. การสูญเสียพลังงานหรือตั้งค่านั่นคือถ้าคุณบังเอิญรีเซ็ตคณะกรรมการรหัสของคุณจะยังคงผนวกข้อมูลแทนของ แทนที่เก่านี้อนุมานรหัสผู้ใช้ไม่ได้. ตั้งค่าตัวชี้ (คำสั่ง resetdp) MS1 14 กันยายน 2004 - ปรับปรุงขั้นตอนการควบคุมมอเตอร์จะทำงานร่วมกับGogo 2.3 การออกแบบคณะกรรมการเป็นที่เหมาะสมน้อย. ขั้นตอนวิธี แต่เราค้านี้. ที่มีความสามารถที่จะมีPCB ด้านเดียว. - ตั้งค่าคำสั่งรอบหน้าที่ PWM เพิ่ม. - เพิ่มการหน่วงเวลาสำหรับการเปลี่ยนช่องทาง ADC ตั้งแต่วันที่ 10 ถึง 50 เราเรา ความล่าช้านี้มีเสถียรภาพมากขึ้น. GoGo 2.2 เฟิร์มแวเปลี่ยนเข้าสู่ระบบ======================================= ======== MS6 10 สิงหาคม 2004 - การเพิ่มประสิทธิภาพ: - ลดเวลาการรอคอยสำหรับช่อง ADC เปลี่ยนตั้งแต่วันที่ 1 ถึง 10 มิลลิวินาทีเรา. - รหัสโหมดถ่ายภาพต่อเนื่องในขณะนี้อ่านจาก ADC เฉพาะเมื่อมีการ. MS5 พฤษภาคม 7, 2004 - เพิ่มการสนับสนุนสำหรับมอเตอร์เซอร์โว (ยังไม่รองรับในโหมดล่าม). -. รหัสคริกเก็ตโลโก้จะถูกเก็บไว้ในขณะนี้ใน memeory แฟลชของ PIC ซึ่งหมายความว่าชิป EEPROM จะกลายเป็นตัวเลือก มันถูกต้อง. ถ้าคุณใช้อาร์เรย์คำสั่งเข้าสู่ระบบข้อมูล (บันทึกการเรียกคืน) ระยะเวลาในรหัส แต่มีข้อ จำกัด ในขณะนี้ 256 ไบต์. - PWM generaltion ได้รับการเขียนใหม่ นี้ทำเพื่อรองรับเซอร์โวมอเตอร์ แต่มันยังช่วยเพิ่มประสิทธิภาพการทำงานของคำสั่งอำนาจ setmotor เช่นกัน. MS4 27 พฤศจิกายน 2003 - แก้ไขข้อผิดพลาดในคำสั่งคริกเก็ตโลโก้ RUN. ตอนนี้ทำงานโหมดการโต้ตอบ (เช่นพิมพ์เสียงเตือนในศูนย์บัญชาการ ของลิ่วล้อ). -. เพิ่ม NEWIR และการสนับสนุนคำสั่ง IR คริกเก็ตที่จะโลโก้. เราเปลี่ยน IR กับการสื่อสารแบบอนุกรมแน่นอน** เป็นผลของการสนับสนุนนี้คณะกรรมการในขณะนี้ Echos ไบต์ทุกที่ได้รับจากคอมพิวเตอร์ นี่คือตอนนี้การทำงานของคริกเก็ตและการเชื่อมต่อบางส่วนคาดว่าไบต์ก้อง (เช่น Microworlds EX) นี้ไม่ควรก่อให้เกิดปัญหาใด ๆ กับซอฟแวร์ที่มีอยู่ GoGo. - Microworlds EX หุ่นยนต์ฉบับปัญหาความเข้ากัน. - บางครั้ง EX ไม่ได้เขียนเริ่มต้นโทรเริ่มต้นขั้นตอน โทร init ถูกเขียนขึ้นในขณะนี้โดยเริ่มต้น. -. บางครั้งเมกะวัตต์ EX ไม่ปรับปรุงเวกเตอร์ปุ่ม RUN เวกเตอร์ชี้ตอนนี้เพื่อ Defa









































































































































































































































































































































การแปล กรุณารอสักครู่..
ผลลัพธ์ (ไทย) 3:[สำเนา]
คัดลอก!
============================
GoGo 4.0 เฟิร์มเปลี่ยนเข้าสู่ระบบ
============================

การเปลี่ยนแปลงทั้งหมดจะสะสม เว้นแต่ระบุไว้เป็นอย่างอื่น

3 มิถุนายน 2013 - รุ่น 4.0.15

- ถาวร มอเตอร์ข้อผิดพลาดที่ป้องกันมอเตอร์จากการปิดอย่างถูกต้อง .
- เพิ่ม 0.5 ความล่าช้าในขั้นตอนการบูต นี้จะช่วยให้โปรแกรมเพื่อตรวจสอบการเชื่อมต่อหรือรีเซ็ต
สถานการณ์และยุติการประชุมในเวลาก่อนโบด้วยสร้างใหม่ คุณลักษณะนี้
เพิ่มช่วย แต่ซอฟต์แวร์คอมพิวเตอร์จะต้องมีรหัสที่ทำให้การใช้งานของการประวิงเวลา


ตุลาคม 29 , 2012 - รุ่น 4.0.14

- ถาวร แสดงข้อความบนหน้าจอโมดูลผ่าน GoGo Monitor ตอนนี้ทำงานอีกครั้ง เป็นข้อผิดพลาดจากซ้ายผ่านรหัส .
-
-- รหัสเล็กน้อยทำความสะอาด ซ่อมบั๊กที่บางครั้งออกจากพอร์ตมอเตอร์ไม่ได้ใช้งานบน
- ถาวร เซอร์โวตอนนี้ทำงานอย่างถูกต้องอีกครั้ง


1 กรกฎาคม , 2012 - รุ่น 4.0.13

- ถาวร ชุดไฟมอเตอร์ ตอนนี้ทำงานอย่างถูกต้องเมื่อมีคำสั่งมอเตอร์ ( เปิด , ปิด , thisway thatway Rd , , , setpower ) เรียกซ้ำ .
- ปรับปรุง วิธีโลโก้สามารถดาวน์โหลดได้เมื่อแสดงโมดูลเชื่อมต่อi2c กิจกรรมกับการแสดงหยุดชั่วคราวในระหว่างการดาวน์โหลด
อาจมีปัญหายังคงเกิดขึ้น แต่ควรจะมากน้อยกว่าก่อน
- เพิ่ม ทั้งหมดมอเตอร์จะปิดเมื่อปุ่มถูกกด หยุดวิ่งตามโลโก้ขั้นตอน


5 กรกฎาคม , 2011 - รุ่น 4.0.12

- เปลี่ยน ขนาดกองโลโก้เพิ่มขึ้นจาก 20 ถึง 64 นี้จะรองรับใหม่แสดงข้อความยาว
คำสั่งสำหรับ 16x2 จอ LCDและยังคงมีมากของ RAM เหลือไม่ได้ใช้ในรูป

-- เพิ่ม primitives สำหรับ 16x2 โมดูลแสดง .
- แสดงยาวข้อความ ขณะนี้มี 3 โหมดการแสดงผล .
1 แสดงข้อความสั้นๆ แสดง 4 ตัว ( ใช้กับการแสดง 7-segment )
2 แสดง 16 บิตเลข .
3 แสดงข้อความยาว แสดงจำนวนของตัวละคร

GoGo Monitor โดยอัตโนมัติจะเลือกโหมดที่จะใช้ขึ้นอยู่กับการใช้ :
แสดง sensor1 - > จะใช้โหมด 2
" hiho - > หนึ่งคู่ราคาจะใช้โหมด 1
" สวัสดี " - > สองคู่ราคาจะใช้โหมด 3

- อื่นๆแสดง primitives

CLS - ล้างจอ
getpos - คืนตำแหน่งของเคอร์เซอร์
setpos - ตั้งค่าตำแหน่งของเคอร์เซอร์ talk_to_7seg_2



talk_to_7seg_1talk_to_lcd_1
talk_to_lcd_2

ปกติโบจะอัตโนมัติค้นพบซึ่งแสดงโมดูลจะแนบ แต่เหล่านี้สี่คำสั่ง
ปิดอัตโนมัติค้นพบและคุณลักษณะที่ช่วยให้ผู้ใช้สามารถเปิดใช้งานจอแสดงผล . นี้เป็นประโยชน์เมื่อใช้
โมดูลแสดงมากกว่าหนึ่งในเวลาเดียวกัน

รุ่น 4.0.11 ( อาบ )
- เพิ่ม ใหม่ " ขยายคำสั่ง " โหมดที่คุณสั่งโหมดนี้ช่วยให้การสั่ง
ที่จะเพิ่มและทำในลักษณะที่ยืดหยุ่นมากขึ้น คือ ext คำสั่งสามารถ n ไบต์ยาวถ้าต้อง .

-- เพิ่ม รับ / ตั้งค่า RTC ถูกเพิ่มขยายคำสั่งของล่าม โหมด มันช่วยให้
GoGo ตรวจสอบซอฟต์แวร์บนคอมพิวเตอร์เพื่อดึงข้อมูลวันที่และเวลาจาก RTC โมดูล จอภาพ
ยังสามารถปรับปรุงวันที่ / เวลาดี

-- เพิ่มโดยเฉพาะ ' แสดง ' ตามปกติสำหรับโมดูลแสดง 7-segment . โมดูลก่อนหน้านี้
ควบคุมโดยแต่ละโลโก้ i2c คำสั่งซึ่งมักจะเกิดข้อผิดพลาดเมื่อมีมาก
i2c การจราจร ซึ่งเหล่านี้ทุ่มเทการปฏิบัติ ขั้นตอนการแสดงกระชับมากขึ้น และทำงานได้เร็วขึ้น
.

- เพิ่ม primitives เพื่อสนับสนุนเวลาจริงนาฬิกา โมดูล คำสั่งนี้อนุญาตให้เข้าถึงทั้ง
วันที่และเวลาคำสั่ง :
-
- วินาที นาที ชั่วโมง วัน เดือน ปี ดาว ( วันของสัปดาห์ทุกหน่วยกลับจำนวนเต็ม )



รุ่น 4.0.10 ( อาบ )
- ถาวร ข้อผิดพลาดที่สลับคำสั่งจะกลับ " เท็จ " เมื่อปุ่มถูกกด
ตอนนี้มันกลับมาเป็น " จริง " เท่าที่ควร

- ถาวร ข้อผิดพลาดที่มอเตอร์จะทำตัวผิดเมื่อ " setpower " คือ การไม่ล่าช้าซ้ำๆ
.

- ถาวรsetdp ข้อผิดพลาดที่จะตั้งค่าตัวชี้ X2 สถานที่ควร
* หมายเหตุ setdp หายไปจากโบตรวจสอบในอดีตไม่ทราบรุ่น
มันก็เพิ่มในการตรวจสอบ 4.3.4 GoGo V



2 ส.ค. 2010 รุ่น 4.0.9
- ตอนนี้บอร์ดเสียงอย่างถูกต้องเมื่อโลโก้รหัสดาวน์โหลดเสร็จแล้ว



สิงหาคม 1 , 2010 รุ่น 4.0.8 ( อาบ )

- แก้ไขปัญหาร้ายแรงที่ทำให้หน่วยความจำของบอร์ดมักจะกลายเป็น
เสียหายหลังจากเปิดเครื่องลง บันทึก / เรียกคืน
-- แก้ไขข้อผิดพลาด ทั้งสองคำสั่งตอนนี้ทำงาน




กรกฎาคม 30 , 2010 รุ่น 4.0.7 ( อาบ )

-- เพิ่มด้วยตนเองการปรับปรุง ตอนนี้ gogoboard เฟิร์มสามารถปรับปรุงโดย
จริงเอารูป มันสามารถทำโดยการใช้เฟิร์ม
ดาวน์โหลดซอฟต์แวร์ มันเป็นกระบวนการสองขั้นตอน :

1ดาวน์โหลด bootloader . โหลดนี้จะถูกเขียนไปยังพื้นที่
ข้อมูลของโกโก .
2 . ดาวน์โหลดการปรับปรุงเฟิร์มแว การ looader จาก 1 จะเขียน
firmware ใหม่ไปเก่า



วันที่ 25 กรกฎาคม 2553 รุ่น 4.0.6 ( อาบ )

-- แก้ไขข้อผิดพลาดที่ทำให้การตั้งค่าระดับมอเตอร์พลังอำนาจที่ไม่ถูกต้อง

กรณีที่ 1 : เมื่อเลือกพลังระดับ 7 หลังจากก่อนหน้านี้เลือก
อีกหนึ่งพลังระดับจะปิดมอเตอร์

กรณีที่ 2 : เลือกระดับพลัง 0 ไม่ทำงานได้ในบางกรณี มอเตอร์
เปลี่ยนที่สูงสุดของพลังงานแทน .



มิถุนายน 6 , 2010 รุ่น 4.0.5

-- แก้ไขปัญหาที่ป้องกันไม่ให้แฟลชเขียนกระดานจากรับ
โลโก้รหัสที่มีความยาวกว่า 256 ไบต์
- hopfully นี้จะแก้ไขปัญหาการทุจริต
สุ่มหน่วยความจำแฟลชได้เป็นอย่างดี นี่คือ
ยืนยัน .
การแปล กรุณารอสักครู่..
 
ภาษาอื่น ๆ
การสนับสนุนเครื่องมือแปลภาษา: กรีก, กันนาดา, กาลิเชียน, คลิงออน, คอร์สิกา, คาซัค, คาตาลัน, คินยารวันดา, คีร์กิซ, คุชราต, จอร์เจีย, จีน, จีนดั้งเดิม, ชวา, ชิเชวา, ซามัว, ซีบัวโน, ซุนดา, ซูลู, ญี่ปุ่น, ดัตช์, ตรวจหาภาษา, ตุรกี, ทมิฬ, ทาจิก, ทาทาร์, นอร์เวย์, บอสเนีย, บัลแกเรีย, บาสก์, ปัญจาป, ฝรั่งเศส, พาชตู, ฟริเชียน, ฟินแลนด์, ฟิลิปปินส์, ภาษาอินโดนีเซี, มองโกเลีย, มัลทีส, มาซีโดเนีย, มาราฐี, มาลากาซี, มาลายาลัม, มาเลย์, ม้ง, ยิดดิช, ยูเครน, รัสเซีย, ละติน, ลักเซมเบิร์ก, ลัตเวีย, ลาว, ลิทัวเนีย, สวาฮิลี, สวีเดน, สิงหล, สินธี, สเปน, สโลวัก, สโลวีเนีย, อังกฤษ, อัมฮาริก, อาร์เซอร์ไบจัน, อาร์เมเนีย, อาหรับ, อิกโบ, อิตาลี, อุยกูร์, อุสเบกิสถาน, อูรดู, ฮังการี, ฮัวซา, ฮาวาย, ฮินดี, ฮีบรู, เกลิกสกอต, เกาหลี, เขมร, เคิร์ด, เช็ก, เซอร์เบียน, เซโซโท, เดนมาร์ก, เตลูกู, เติร์กเมน, เนปาล, เบงกอล, เบลารุส, เปอร์เซีย, เมารี, เมียนมา (พม่า), เยอรมัน, เวลส์, เวียดนาม, เอสเปอแรนโต, เอสโทเนีย, เฮติครีโอล, แอฟริกา, แอลเบเนีย, โคซา, โครเอเชีย, โชนา, โซมาลี, โปรตุเกส, โปแลนด์, โยรูบา, โรมาเนีย, โอเดีย (โอริยา), ไทย, ไอซ์แลนด์, ไอร์แลนด์, การแปลภาษา.

Copyright ©2025 I Love Translation. All reserved.

E-mail: