Author Topic: Release 0.50b by Mis  (Read 8394 times)

MIS

  • YaBB God
  • *****
  • Posts: 996
  • yampp firmware creator
Release 0.50b by Mis
« on: 14.06.2008 at 19:11:44 »
Hi all !

Here is new standard ypod firmware release 0.50b:

http://www.romek_by.republika.pl/ypod_0.50b.zip

Changes:
+ USB mass storage support (thank's to MIC for hes hard, good work)
+ Fixed music playing disturbation during menu navigation. Now even 320kbps CBR files can be playing without any gaps.
+ SDHC support based on MIC's code
+ Simple text "longpress menu" changed to graphics.
+ Fixed "BMP" style bitmaps displaying, adding trap for too high resolution files
+ Fixed "BMP" cover loading
+ Many bugfixes.

Breakout plugin, and SD card "system" contents included. Please unzip "SD_system.zip" to "system" folder on SD card.

The USB mass storage function not start automatically after USB cable is connected ! You can connect the player into PC or external charger, and charge the battery during music playing.

You have two ways for start USB PC connection.
1. Connect USB cable in power off state, then power on the player. After startup screen the connection is started automatically.
2. If your player is ON, connect the USB cable, longpress the slider for enter the "long menu", select "Player Info" option and shortpress slider for start communication.

Quick update at 08-06-15 19:15 - Replacing with new version internally named 0.50b1
+ Some more bugfix, and code cleaning.
+ Speedup USB transfer about 50%. Now I get card writing speed about 170 kbytes/s.

Sometimes after USB disconnect I notice that the timer tick interrupt can't restart, and cause system hang.
In this version I added some check for this situation, and if occur, the player shutdown after USB cable disconnecting (or host disconnect). No more lockup after USB disconnect.

 Greetings,
 MIS
« Last Edit: 15.06.2008 at 19:26:52 by MIS »
--MIS--

Oleg

  • Newbie
  • *
  • Posts: 8
Re: Release 0.50b by Mis
« Reply #1 on: 21.06.2008 at 11:25:40 »
And where you can see the source code?

MIS

  • YaBB God
  • *****
  • Posts: 996
  • yampp firmware creator
Re: Release 0.50b by Mis
« Reply #2 on: 24.06.2008 at 17:40:29 »
After some cleaning and comment I upload the sources into repository. Please wait a while...
--MIS--

MIS

  • YaBB God
  • *****
  • Posts: 996
  • yampp firmware creator
Release 0.51
« Reply #3 on: 27.06.2008 at 00:39:19 »
Version 0.51 Released.

Removed startup beeps
Adding startup screen
Fixed non SDHC 2 and 4GB card support
Fixed Timer BUG
Fixed filebrowser
Some more bugfixes.

http://www.romek_by.republika.pl/ypod_0.51.zip

Breakout plugin, and SD card "system" contents included. Please unzip "SD_system.zip" to "system" folder on SD card.
Source code avaliable in ypod SVN repository.

--MIS--

kay1234

  • Jr. Member
  • **
  • Posts: 88
  • Gender: Male
Re: Release 0.50b by Mis
« Reply #4 on: 28.06.2008 at 16:31:40 »
Thank you MIS. Working fine here.

Jeepman

  • Full Member
  • ***
  • Posts: 121
Re: Release 0.50b by Mis
« Reply #5 on: 30.06.2008 at 12:30:44 »
Hi Mis,

Really nice work !!

I found something strange. I see some funny characters when i select ".." folder of the root directory !

Thanks !!
Salutations !
Eric G.

MIS

  • YaBB God
  • *****
  • Posts: 996
  • yampp firmware creator
Re: Release 0.50b by Mis
« Reply #6 on: 03.07.2008 at 00:18:36 »
Version 052 released.

http://www.romek_by.republika.pl/ypod_0.52.zip

Fixed FAT32 root directory bug.
Added advanced power menager, reduce power consumption.
Added SD card status info into player info screen. Now you can check card capacity and amount of free space on your SD card.
Improoved charging detection.
Few bugfixes.

Breakout plugin included.
Source code avaliable in ypod SVN repository.
--MIS--

rMx

  • Newbie
  • *
  • Posts: 44
Re: Release 0.50b by Mis
« Reply #7 on: 04.07.2008 at 17:49:41 »
HI MIS!

Very cool piece of software, seems the yPod is alive again ^^


Well, one thing to mention from my side: Is the following behaviour of the menu wanted this way?

When i select the "randomize" mode, and after that i browse around within the music folders and select a specific song, then the player starts playing the next (randomized) song, not the selected one.

With other words: In my opinion, the player should go back to "normal" mode, when i select a song to be played.

But of course this is a very tiny thing and maybe this is also the wanted behaviour.


Thanks for the great work!!

MIS

  • YaBB God
  • *****
  • Posts: 996
  • yampp firmware creator
Re: Release 0.50b by Mis
« Reply #8 on: 05.07.2008 at 17:19:27 »
rMx:
This problem is very easy to fix.
In "helpers.c", function "void step_in_playlist(int dir)" you need two small changes.
Replace both occurences of:
Code: [Select]
if(random)by
Code: [Select]
if(random && dir != 0) // if random ON and not direct file selecting
That's all ! After this modification, in random mode you can select any song in filebrowser, and it be played normally, but the next song (automatically changed) will be randomized.
--MIS--