Search results for

ACME

78 results found

Post

Replies

Boosts

Views

Activity

when plist will get added to the registry?
HiI am trying to Write a Serial/ACM driver for mac os Catalina Since all these kind of drivers has to be moved to User Space (as per wwdc 2019). So I am Planning to use driver kit, usb serial driver Kit and Serial driver kit.I am new to KEXT and DEXT.I have a doubt regarding plist.In our kext driver during driver initialization, getProperty reads from registry. So when plist items gets added to the registry?
0
0
462
Apr ’20
Reply to Quicklook cache taking up almost 80gb of storage?
David:Only assumptions on my part, I'd guess that file is allowed to go big specifically related to the beta, via the ACM, or, at least in your example, it's borked - sqlite.org says this about size, otherwise:Avoiding Excessively Large WAL FilesIn normal cases, new content is appended to the WAL file until the WAL file accumulates about 1000 pages (and is thus about 4MB in size) at which point a checkpoint is automatically run and the WAL file is recycled. The checkpoint does not normally truncate the WAL file (unless the journal_size_limit pragma is set). Instead, it merely causes SQLite to start overwriting the WAL file from the beginning. This is done because it is normally faster to overwrite an existing file than to append. When the last connection to a database closes, that connection does one last checkpoint and then deletes the WAL and its associated shared-memory file, to clean up the disk.So in the vast majority of cases, applications need not worry about the WAL file at all. SQLite will a
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’19
POSIX open() blocks indefinitely for serial port file descriptor
I have a USB CDC ACM device which appears in the /dev filesystem as /dev/tty.usbmodem... and /dev/cu.usbmodem... . Most of the time, I am able to read from and write to this device using serial port libraries, including the POSIX calls open(), read(), write(), etc.However, if the device is plugged in, then my mac goes to sleep for at least a few minutes (3 seems very repeatable), when the PC wakes up and I try to open the file, the call to open() blocks or hangs forever. This also happens if I use the `O_NONBLOCK` option, which should return immediately. I am not loading any special device drivers, but instead relying on the built-in driver loaded for USB CDC ACM devices.This affects not only my software, but also built-in utilities including `screen` and other common libraries including pyserial. I've tried both the /dev/tty.usbmodem... and /dev/cu.usbmodem.. filepaths. This occurs across multiple versions of macOS including Mojave and High Sierra. I've tried using direct USB-C cable connec
2
0
1.3k
Jun ’19
IOKIT Detecting BSD(unix) name for USB Serial Device with PID and VID
I am working with USB serial devices on macOS.How can I detect BSD(unix) name have for my USB Serial device on macOS using IOKit?I want to get device name like : IODialinDevice = /dev/tty.usbmodemMyDeviceNameMy USB device is USB serial COM port.Also I want to detect when device was attached to machine.I can detect when new USB device with my VID and PID was connected.This code allows me to do it CFMutableDictionaryRef keywordDict = IOServiceMatching(kIOSerialBSDServiceValue); kern_return_t result = IOServiceGetMatchingServices(kIOMasterPortDefault, keywordDict, &iterator); while ((port = IOIteratorNext(iterator))) { io_object_t parent = 0; io_object_t current_device = port; while (KERN_SUCCESS == IORegistryEntryGetParentEntry(current_device, kIOServicePlane, &parent)) { CFTypeRef vendor_Id = IORegistryEntryCreateCFProperty(parent, CFSTR(kUSBVendorID), kCFAllocatorDefault, 0); CFTypeRef pr_Id = IORegistryEntryCreateCFProperty(parent, CFSTR(kUSBProductID), kCFAllocatorDefault, 0); if((vendor_id==MY_VEND
3
0
3.8k
Feb ’19
Connecting a device based on MicroChip MCP2200
HiI'm trying to connect a development board. based on MCP2200 USB/UART converter to a High Sierra system. However: I do not see any device appearing in /dev/. The same device does connect to a Windows and Linux system, so I do not suspect the hardware. Is teher ny driver to be installed maybe? The manufacturer claims that the chip supprt the cdc/acm protocol, see site: http://ww1.microchip.com/downloads/en/DeviceDoc/MCP2200_MCP2221_CDC_Mac_Readme.txt
2
0
2.6k
Jun ’18
auv3 macOS in process validating
oli-mbp:~ oli$ auval -v aufx IpeH Acme AU Validation Tool Version: 1.6.1a1 Copyright 2003-2013, Apple Inc. All Rights Reserved. Specify -h (-help) for command options -------------------------------------------------- VALIDATING AUDIO UNIT: 'aufx' - 'IpeH' - 'Acme' -------------------------------------------------- Manufacturer String: AcmeInc AudioUnit Name: IPlugEffect Component Version: 1.0.0 (0x10000) * * PASS -------------------------------------------------- TESTING OPEN TIMES: COLD: dyld: warning, LC_RPATH @executable_path/../Frameworks in /Users/oli/Applications/IPlugEffect.app/Contents/Frameworks/IPlugEffectAUv3Framework.framework/IPlugEffectAUv3Framework being ignored in restricted program because of @executable_path 2018-05-10 20:45:25.883 auvaltool[5532:94786] -[IPlugViewController createAudioUnitWithComponentDescription:error:]: unrecognized selector sent to instance 0x7fa5b4031ee0 2018-05-10 20:45:25.883 auvaltool[5532:94786] *** Terminating app due to uncaught exception 'NSInv
2
0
1.9k
May ’18
One subscription fee for multiple device installs?
Hi,If I have an business application that comprises a vendor app and a customer app, how do I charge for the vendor where it may be used on multiple devices by the same vendor?For example, I build an application to manage parcel delivery (so vehicle tracking, download routes, signing for parcels, etc). I want to build a customer app (for the people who want to receive parcels) which is free, and will be iOS and Android. I want to build the vendor app (for the delivery company) with a subscription of $10 per month, and let them use as many devices as they want. So Acme Delivery signs up for $10/month and has five vehicles, so needs five instances of the app. Both apps have limited in-app functionality, and the main business logic is in a web application accessed from the apps via an API.I am struggling to understand how Acme Delivery can download the vendor app to multiple devices, without either the vendor app being free or the vendor owner having to do an in-app purchase on every device. Th
7
0
1.8k
May ’18
Reply to High Sierra 10.13 beta 3 FileVault crash locked startup HD
I take it there is still no fix on the horizon?Has there been any murmur from ACME? Does anyone over there even give a s*** anymore?The official release of 10.13 causes the same crash. It is clearly a known/documented issue. I find it staggering that they released it without fixing this.My upgrade completed successfully. After poking around for a couple hours I thought Let's reboot and make sure we can get back in....big mistake.Has anyone successfully recovered any data from an affected machine?
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’17
Subscription status updates are received but have an empty body
I have been implementing the subscription status updates service that Apple started to offer recently following the specifications described here. I started receiving updates but the received requests are simply empty.This is a dump of the request captured by Symfony (PHP framework):SymfonyComponentHttpFoundationRequest Object ( [attributes] => SymfonyComponentHttpFoundationParameterBag Object ( [parameters:protected] => Array ( [_controller] => AcmeSubscriptionBundleControllerStatusUpdateController::postAction [_route] => acme_subscription_statusupdate [_route_params] => Array ( ) ) ) [request] => SymfonyComponentHttpFoundationParameterBag Object ( [parameters:protected] => Array ( ) ) [query] => SymfonyComponentHttpFoundationParameterBag Object ( [parameters:protected] => Array ( ) ) [server] => SymfonyComponentHttpFoundationServerBag Object ( [parameters:protected] => Array ( [REDIRECT_SCRIPT_URL] => /statusupdate [REDIRECT_SCRIPT_URI] => https://acme.com/statusupdate
1
0
801
Aug ’17
Can Address Sanitizer be used on a Network Extension ?
I'm trying to debug what appears to be a high rate traffic memory corruption related issue in a Network Extension and am attempting to run the Address Sanitizer to help track the issue down. With the Address Sanitizer enabled the Network Extension fails to start correctly. Does anyone know if this is a supported operation mode ? Without Address Santization the tunnel executes and can be debugged successfully.If I attempt to attach the Xcode debugger to the extension as it starts there is some indication that the session is starting but then it dies.default 13:57:09.831134 +0100 nesessionmanager NESMVPNSession[ACME VPN:0AA30726-7734-40A5-8387-43FCF341B0D9]: Received a start command from ACME[524]default 13:57:09.836846 +0100 nesessionmanager NESMVPNSession[ACME VPN:0AA30726-7734-40A5-8387-43FCF341B0D9]: status changed to connectingdefault 13:57:09.847652 +0100 neagent calling plugIn beginUsing:default 13:57:09.849673 +0100 pkd allowing host 296 <private> to use plug-in <priv
0
0
615
Apr ’17
Does the mobile app have to be copyrighted to submit to app store?
I am about to submit my mobile app for e review and I see a place that asks for copyright information, it asks for, The name of the person or entity that owns the exclusive rights to your app, preceded by the year the rights were obtained (for example, 2008 Acme Inc.).. My company has not copyrighted the mobile app, is this necessary before the mobile app is submitted to the app stores?
2
0
4.1k
Jan ’17
MDM.cer Private Key?
Hello,I have been following some instructions I found online for setting up and running a custom MDM server. In one of the steps it talks about creating and MDM Vendor CSR. Below I have listed out these steps from the website. I have done up to Step 5, but in step 5 it talks about getting the private key from the MDM Vendor CSR after it has been installed into Keychain Access. Once I get here, for me, there is no disclosure triangle to display the private key. Has something changed in this process and the private key is now located somewhere else or needs to be created in some different way?One other thing to make note of is, what gets downloaded in step 5 is a file named mdm.cer. Should this file actually be named mdm.csr? If so, then maybe my Enterprise account is not flagged for MDM Vendor use. I am not the team agent, so if what I previously mentioend is the case, then I would need to get with that person and have the account flagged appropriately. I would think if the account is not flagged for MDM Vendo
3
0
2.8k
Aug ’16
Personal hotspot with more informations
Hi guys,Is it possible to send some information with hotspot that have been created on phone using app to others?I need that information to check if my app runs on other device that have hotspot enabled. I've thought about it and it came to my mind that in some hotels or restaurants there is wi-fi with no password but with authentication on website, so that information could be send that way but I have no idea if it is doable in xcode on ios.May there are some different ways to check if specified hotspot was made with my application?As you can see here:There is some text under the SFO WiFi so maybe that is the way to send the information but how to set that text, for example to be Acme Wireless using app?Please help
Topic: Safari & Web SubTopic: General Tags:
0
0
276
Jan ’16
Reply to "codesign verify" is happy but spctl rejected ?
spctl --verbose --assess --type execute -v TSR.app/ TSR.app/: rejected origin=Acme, Inc.codesign -dvv TSR.app/ Executable=/Users/edward3/Documents/projects/build-tsr-Desktop_Qt_5_5_0_clang_64bit-Release/tsr-app/TSR.app/Contents/MacOS/TSR Identifier=com.acme.tsr Format=bundle with Mach-O thin (x86_64) CodeDirectory v=20100 size=39347 flags=0x0(none) hashes=19e61+3 location=embedded Signature size=4804 Authority=Acme, Inc. Authority=DigiCert EV Code Signing CA (SHA2) Authority=DigiCert High Assurance EV Root CA Signed Time=Aug 24, 2015, 8:21:43 AM Info.plist entries=15 TeamIdentifier=not set Sealed Resources version=2 rules=12 files=39 Internal requirements count=1 size=96
Topic: Code Signing SubTopic: General Tags:
Aug ’15