Quantcast
Channel: Objective Development Forums
Viewing all 4524 articles
Browse latest View live

Re: ClipMerge not working on Mavericks?

$
0
0
Environment: MacBookPro Retina with OS X 10.9.1.
Launchbar v5.6.2

Every time I log into my account I get the request alert to access my accessibility.
I followed the solutions stated earlier: accessing accessibility (privacy) and selecting Launchbar.
But this has NO effect.

Looks like version v5.6.2 has is buggy for OS X 10.9.1 "Mavaricks".

Re: Using with VPN

Re: photo gallery with responsive design

$
0
0
One of my friend is Photographer in Port Macquarie. I liked his gallery with responsive design. You can take help from him. I am sure he will help you in all your doubts. He is famous and experienced photographer.

Re: Several security dialogs every reboot on Mavericks

$
0
0
Do I just delete the main app, or all pref files? Thanks.

Re: Vast number of new connections

$
0
0
I am facing this same issue, and I feel that allowing "ALL" connections for an application, just to keep the rules from popping up, is detrimental to the functioning of what Little Snitch is for. For instance, when visiting several websites, I am asked to allow a plethora of attempts, some of which have nothing to do with the loading of the page. Sometimes, the page has finished loading everything, yet I am still clicking thru requests for rules. Some of these attempts are for websites which, I have found, simply place tracking cookies on my computer. I don't see why Facebook, twitter, and google ads needs to be a part of me visiting Amazon. Or some other websites which have no affiliation with that site whatsoever. I think allowing "all" connections just to shut up Little Snitch defeats its purpose. It would be nicer to have a list of rules Objective Development has determined to be "safe" or "questionable" for us to go by. For the money, I don't think it is asking too much for such a list to be provided. Sometimes I just turn off LS to keep from having to click thru 30 or more requests to simply look at a site.

Network Filter Off really off?

$
0
0
Hi gang,

I just realized that even when turning "Network Filter" to off, there's still internet traffic going on (constant download of 0.2-0.3 KB/s). Shouldn't all Internet traffic be stopped when we click on "Stop Network Filter"?

Note I monitor my connections/traffic with PeakHour and just to test it's accuracy, I've disconnected my WAN and traffic went down to 0KB/s.

So LS still lets some traffic thru, why?

Thxs

Jean

Selecting contact tries to launch Cobook

$
0
0
I just installed Launchbar. Every time I select a contact and press enter, it apparently tries to launch Cobook (which I did not ask it to, and which is not longer installed on my system). I get a message saying "This beta version of Cobook is expired, go download a new version ... etc." I don't really want to use Cobook, but in order to get rid of this message, I went and installed a release version anyway. Unfortunately, I still get this message even after relaunching LaunchBar and even with Cobook running.

Any idea how I can get rid of this, and any idea how to prevent LaunchBar from assuming I have various 3rd party apps installed in the first place?

Thanks.

PS - I have searched through the LaunchBar plist for Cobook, but there is nothing, so I have no idea how LaunchBar knows anything about it in the first place

How can I whitelist a range of IPs?

$
0
0
How can I create a whitelist that includes both individual IP addresses and ranges of IP addresses...and block everyone else?

Can I do it like this?

136.76.55.122, 197.76.55.122, 126.10.148.0/24

Or perhaps like this?

136.76.55.122 197.76.55.122, 126.10.148.1-126.10.148.16

Re: How can I whitelist a range of IPs?

$
0
0
From the help file:

Numeric Sets: Addresses can be entered as single IP address (e.g. 10.0.0.1), a range of addresses (e.g. 10.0.0.1-10.0.0.9), a range in CDIR notation (e.g. 192.168.0.0/16) or a comma separated list of addresses and ranges.

Re: hidtool works on Linux, does not work on Windows 7

$
0
0
I also started with this tool. It seems to me that Windows system is more strict on following the descriptor. The data sent and received must have the length defined in the descriptor, otherwise it will report error. Under unix, you can read and write less data than defined. You may get a warning at some level of the driver.

Re: Application Not Responding

$
0
0
This basically describes my situation as well. I am running 10.9.1 and unable to launch the configuration app. CPU use for that process goes to 100% and no window appears.

Re: Copy 1Password content from LaunchBar?

$
0
0
Yep, thanks for the 1p clipboard fix!

Re: Feature Req: Display of last blocked connection

$
0
0
Great tips, Norbert

Thanks!

Michael

Never hits the interrupt

$
0
0
Hi,

I'm running the code on an AT90USB1287 ... *not* using the hardware USB, running v-usb to see how it works out. Everything looks right level wise, other code on the system runs fine, my i2c buss is doing its thing, lights lighting etc etc. I can see the 1.5K get pulled high when I call usbConnect(); and I can see my Linux box try and talk to the system, but never enumerates ... and setting a breakpoint on usbProcessRx(){...} never hits. I thought it might just be a funny with the JTAG debugger, so it set it to light an LED if the routine ever gets called ... it never does. So, it looks like the ISR is never calling home for some reason.

I thought it might be becuase I am using non-standard pins and interrupts.

Because im using i2c, port D pins 0,1 are in already in use, so INT0 and INT1 are not available either.

I'm running USB into PORTD 2 and 3, D+ on 2, D- on 3, PORTD 2 is INT2. Im unsing PORTC 0 as my pullup via 1.5K

Maybe I missed somethign obvious in the config? I can see the global interrupt get enabled, so im wonderign if maybe INT0 got hardwired somewhere in the assy?? Maybe someone can spot somethign obvious I missed?

Any clues gratefully received.

My usb config includes:

#define USB_CFG_CLOCK_KHZ 12000
#define USB_CFG_IOPORTNAME D
#define USB_CFG_DMINUS_BIT 3
#define USB_CFG_DPLUS_BIT 2
#define USB_CFG_PULLUP_IOPORTNAME C
#define USB_CFG_PULLUP_BIT 0

// #define USB_INTR_CFG MCUCR
// #define USB_INTR_CFG_SET ((1 << ISC01) | (1 << ISC01))
// #define USB_INTR_CFG_CLR 0
/* #define USB_INTR_ENABLE GIMSK */
#define USB_INTR_ENABLE_BIT INT2
/* #define USB_INTR_PENDING GIFR */
#define USB_INTR_PENDING_BIT INTF2
#define USB_INTR_VECTOR INT2_vect

my hardware init is :

static void initHardware(void)
{
DDRC = 1;
PORTC = 0x00;
/*
unsure why this isn't handled in usbInit(), but anyway, set it up here

*/
DDRD = 0xF0; /* 1111 0000 bin */
PORTD = 0x00; /* 0000 0000 bin */
}


and ... in main.c

initHardware();

usbDeviceDisconnect();
_delay_ms(250.0);
usbDeviceConnect();
usbInit();
sei();

for(;;){ /* main event loop */
wdt_reset();
usbPoll();
}

Re: Never hits the interrupt

$
0
0
I tried V-USB on the same chip recently. One change was having clock_prescale_set( clock_div_1 ); at the beginning of main, but you probably already have this since your other code isn't running in slow-motion.

I used INT0 and had to reconfigure the interrupt:
#define USB_INTR_CFG            EICRA
#define USB_INTR_CFG_SET        ((1 << ISC00) | (1 << ISC01))
#define USB_INTR_CFG_CLR        0
#define USB_INTR_ENABLE         EIMSK
#define USB_INTR_ENABLE_BIT     INT0
#define USB_INTR_PENDING        EIFR
#define USB_INTR_PENDING_BIT    INTF0
#define USB_INTR_VECTOR         INT0_vect

For INT2, a quick look shows that this is probably correct:
#define USB_INTR_CFG            EICRA
#define USB_INTR_CFG_SET        ((1 << ISC20) | (1 << ISC21))
#define USB_INTR_CFG_CLR        0
#define USB_INTR_ENABLE         EIMSK
#define USB_INTR_ENABLE_BIT     INT2
#define USB_INTR_PENDING        EIFR
#define USB_INTR_PENDING_BIT    INTF2
#define USB_INTR_VECTOR         INT2_vect

And probably not the cause of the problem, but I don't think you need to configure the USB port's DDR/PORT, as the default input with no pull-up at reset is what usbdrv works with.

Re: Never hits the interrupt

$
0
0
Ah ha! ICS20 & ICS21 ... that did it .. all is good.

It won't run with the JTAG debugger doing it's thing, but its just fine otherwise, thank ye!

Re: Selecting contact tries to launch Cobook

$
0
0
Launch Cobook and check the default address book setting in preferences. If it's Cobook, change it to Address Book or Contacts. Quit Cobook. See if problem remains.

Re: 1Password - Can't Open the specified address

$
0
0
I'm reluctant to post "me too" messages, but this problem has existed for quite some time, and I have not seen a solution.

I'll search the net, and maybe find something there.

Re: INT0 on D- instead of D+

$
0
0
What problems are you having with using PB0 and PB1? If you don't also wire one to an interrupt pin, you'll need to be on a device that supports PCINT (pin change interrupt) that you can configure for one of those two pins.

Sometimes it does ... sometimes it doesn't

$
0
0
I'm having a bit of headache with a (modified) version of Automator ... and at least part of the problem seems to be erratic comms.

Running #lsusb -D <device path> or opening the device from a random Perl script will either yield the manufacturer name, or the product name, or both, or neither ... depending on how it happens to feel at the time.

I ran usbmon and mounted the kernel debugfs and got this example of a partially failed transaction:

daacee00 3258841209 S Ci:6:028:0 s 80 06 0300 0000 00ff 255 <
daacee00 3258847165 C Ci:6:028:0 0 4 = 04030904
daacee00 3258847184 S Ci:6:028:0 s 80 06 0301 0409 00ff 255 <
daacee00 3258856170 C Ci:6:028:0 -84 16 = 1a037700 77007700 2e006f00 62006400
f0b1d980 3258856251 S Ci:6:028:0 s 80 06 0300 0000 00ff 255 <
f0b1d980 3258862165 C Ci:6:028:0 0 4 = 04030904
f0b1d980 3258862185 S Ci:6:028:0 s 80 06 0302 0409 00ff 255 <
f0b1d980 3258873169 C Ci:6:028:0 0 20 = 14034100 75007400 6f006d00 61007400 6f007200
f0b1d980 3258873264 S Ci:6:028:0 s 80 06 0300 0000 00ff 255 <
f0b1d980 3258880172 C Ci:6:028:0 0 4 = 04030904
f0b1d980 3258880215 S Ci:6:028:0 s 80 06 0300 0409 00ff 255 <
f0b1d980 3258886165 C Ci:6:028:0 0 4 = 04030904


the line:

"daacee00 3258856170 C Ci:6:028:0 -84 16 = 1a037700 77007700 2e006f00 62006400"

appears to be the troublesome one ... it seems to be saying its going to send 0x0A bytes, I can see it manages "www.obd" and then seems to crap out ... not sure what the -84 code is .. I guess its an error code for something?

I've disabled other interrupts on the system, (im running on INT2, so I've cleared INT0 and INT1) .. any clues where to start looking? Its a 3.3V system and runing through a pair of 68R into the linux box, the lines appear to go close to rail and look lovely and crisp on the scope, so I doubt it is levels ...

The initial setup seems to go OK, I can see it finds the device and works out what it is, vendor ID, product ID etc, that all seems to go off with out a hitch .. its the later queries and anything from the fltk application that seem to be cursed ... any clues on where to begin to dig?
Viewing all 4524 articles
Browse latest View live