Increase USB current output - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: Audiophile (https://moodeaudio.org/forum/forumdisplay.php?fid=32) +--- Forum: Sound quality (https://moodeaudio.org/forum/forumdisplay.php?fid=34) +--- Thread: Increase USB current output (/showthread.php?tid=3944) |
Increase USB current output - FraMoode - 06-24-2021 Dear All, Please could you tell me if it is possible to increase USB mA output as for example showed in The thread below? https://raspberrypi.stackexchange.com/questions/27708/is-setting-max-usb-current-1-to-give-more-power-to-usb-devices-a-bad-idea I have a E1DA powerDAC 2.1 and the volume out with my old laptop is a lot more loud than my raspberry pi4 + moode player. I think the issue is the amperage out, otherwise I cannot explain the reason. Thanks. RE: Increase USB current output - Tim Curtis - 06-24-2021 The "usb_max_current" setting which only applied to Pi-1A/A+, Pi-1B/B+, Pi-2B models has been dropped by the Raspberry Pi Foundation because the firmware in RaspiOS now has the flag set by default. https://www.raspberrypi.org/documentation/configuration/config-txt/misc.md The symptom you describe "volume out with my old laptop is a lot more loud than my raspberry pi4" suggests something external to moOde software for example some sort of electrical issue? Feel free to reboot and post the Moode startup log. Code: moodeutl -l RE: Increase USB current output - FraMoode - 06-24-2021 (06-24-2021, 10:48 AM)Tim Curtis Wrote: The "usb_max_current" setting which only applied to Pi-1A/A+, Pi-1B/B+, Pi-2B models has been dropped by the Raspberry Pi Foundation because the firmware in RaspiOS now has the flag set by default. Hi Tim, Thanks to help me. Th electronic part is fine from my point of view. I am using "Hardware" to control the volume. Code: pi@moode:~ $ moodeutl -l RE: Increase USB current output - FraMoode - 06-24-2021 Just for test, to check if the hardware is ok and not electronic issue, I tried to use another player (piCore) and the volume is loud as for my laptop. Any idea about where the issue is in moode audio? Please feel free to ask for any further tests. Thanks. RE: Increase USB current output - Tim Curtis - 06-24-2021 Not obvious to me but maybe another member has some ideas. If you are going to always output 100% volume then try changing MPD volume to Fixed (0dB). Also look at alsamixer and verify that a ALSA is outputting 0dB gain for the devices mixer control named PCM. Code: alsamixer -c 2 RE: Increase USB current output - FraMoode - 06-24-2021 (06-24-2021, 01:24 PM)Tim Curtis Wrote: Not obvious to me but maybe another member has some ideas.Bingo!!!! Thank you so much, indeed it was ALSA outputting not at MAX. Problem solved!!! Please may I ask you another doubt. I have the volume control set to HARDWARE. Is it preferable to set to SOFTWARE? Any difference in sound performance between HARDWARE and SOFTWARE? Thanks again RE: Increase USB current output - Tim Curtis - 06-24-2021 I don't see how it's possible for alsamixer to show < 100 since the Moode startup log entries show otherwise. The line ALSA PCM volume (100%) is the alsamixer volume. 20210624 082111 worker: Max ALSA volume (100%) 20210624 082116 worker: ALSA PCM volume (100%) RE: Increase USB current output - FraMoode - 06-24-2021 It was as showed in the pictured. As soon as I increase to the max the volume in the PCM1, it stared to be loud as in my laptop. Any difference in sound quality between HARDWARE and SOFTWARE? Thank yo. RE: Increase USB current output - Tim Curtis - 06-24-2021 Software uses MPD's volume algorithm and Hardware uses the device's USB or DAC chip volume controller and it's algorithm. it may use a different curve and may or may not apply dither. I see this device has 2 ALSA volume controls PCM and PCM 1 with no obvious way to determine which one (or both) are used for volume control. Whats the output from the command below? Code: amixer -c2 RE: Increase USB current output - FraMoode - 06-26-2021 (06-24-2021, 08:30 PM)Tim Curtis Wrote: Software uses MPD's volume algorithm and Hardware uses the device's USB or DAC chip volume controller and it's algorithm. it may use a different curve and may or may not apply dither. It has two volumes. pi@moode:~ $ amixer -c2 Invalid card number. Usage: amixer <options> [command] Available options: -h,--help this help -c,--card N select the card -D,--device N select the device, default 'default' -d,--debug debug mode -n,--nocheck do not perform range checking -v,--version print version of this program -q,--quiet be quiet -i,--inactive show also inactive controls -a,--abstract L select abstraction level (none or basic) -s,--stdin Read and execute commands from stdin sequentially -R,--raw-volume Use the raw value (default) -M,--mapped-volume Use the mapped volume Available commands: scontrols show all mixer simple controls scontents show contents of all mixer simple controls (default command) sset sID P set contents for one mixer simple control sget sID get contents for one mixer simple control controls show all controls for given card contents show contents of all controls for given card cset cID P set control contents for one control cget cID get control contents for one control |