Jump to content

>Alejandro

Members
  • Posts

    34
  • Joined

  • Last visited

Reputation

18 Good

Profile Information

  • Gender
    Male
  • Location
    Russia

Recent Profile Visitors

754 profile views
  1. Yes, implemented. hw->card_name contains the device name and port address, so getLocalUniqueID returns a unique ID. It would be interesting to test this in your code.
  2. I have implemented the getLocalUniqueID() function OSString *kXAudioEngine::getLocalUniqueID() { if (!hw->card_name) return super::getLocalUniqueID(); char str[64] = ""; snprintf(str, sizeof str, "%s:%lx", hw->card_name, (long unsigned int)index); return OSString::withCString(str); } But I haven't tested in os above Catalina.
  3. My fork hasn't been updated for a very long time and doesn't contain the actual code of my current driver version (https://applelife.ru/threads/creative-sb-live-audigy-e-mu-driver.2850376/) I tested on Catalina, 3 cards work fine. Did you actually test my version on Ventura or just assumed it didn't work?
  4. Try this kx ac97.app. I have added an input monitoring button. kX AC97.zip
  5. Working driver for win - https://forum.hardwareheaven.com/threads/windows-10-and-kx-3552-new-fix.230567/
  6. I continue to work on my version of the driver. Now I'm working on midi support. While at the initial stage, but there is already a positive result, midi messages from an external source are sent to the DAW. Tests were carried out on e-mu 1616m and audigy 2 zs.
  7. I do not know if this will help or not, maybe try to increase the delay (hw->cb.usleep(100);) when uploading the firmware in the upload_fpga_firmware function?
  8. Need to experiment with 0404 pci cards. I sent you a test version in PM.
  9. Check your cards with this hardware configuration and official E-MU drivers for Windows.
  10. Does the card work in Windows? Try to debug edspctrl. What value does upload_fpga_firmware return? see edsplib.cpp if(is_k8) // v2 EM8960 or v2 0404 or PCIe 0404 EM8982 { if(subsys==0x40021102 || subsys==0x40051102) // 0404 or EM8982 PCIe 0404 { ret=ikx->upload_fpga_firmware(emu0404_netlist,sizeof(emu0404_netlist)); // 0404 v2 }
  11. I updated the source code on github. https://github.com/c0deSpace/kx-audio-driver
  12. Use ac97.app for input. You can take it here This application allows you to select the input source.
  13. Hi! Not yet, I will do it soon. There is only one change - 192 kHz playback for consumer cards. I continue to work on supporting E-MU cards in my free time, there is a positive result, but still a lot of work.
×
×
  • Create New...