¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date

Re: Test Submission

 

It depends on their work load. I did mine early this summer and it came back really quickly. Just a few weeks.
On the previous exam it took them 60 days. I think you have no choice but to be patient and assume its going to be 90 days.


Re: VS2008 debug error with 3-series

 

Solved.
was using ssharpappdebug on instead of SSDEBUGENABLE ON


Re: Master's 2024 Registration

 

¿ªÔÆÌåÓý

I had it too.
I used my iphone when i¡¯ve noticed that issue.
I will try later with my pc
NFH

On 28 Nov 2023, at 2:19?p.m., Bill Kreider <kreiderw@...> wrote:

?Has anyone else had difficulty registering for Master's? I can click on the different classes, I get a descriptive popup, but I have no way to add the class that I can see.


Re: Crestron Debugger Disconnection Issues

 

Shameless self-serving plug here, but you should check out?


Re: Crestron Debugger Disconnection Issues

 

yeah, same issue.? ?Today was especially bad as I was working with a PRO4.? I have the same issue with MC4 in my office.


Re: Test Submission

 

I submitted mine in early October, got told 60-90 days, and have not heard back yet.? A guy I know on the inside told me he'd be surprised if they got back to me before the end of the year, right now.

On Tue, Nov 28, 2023 at 2:10?PM <monticellog@...> wrote:
Email after submitting said 60-90 days. I received grade in about 2 weeks


Re: Crestron Debugger Disconnection Issues

 

Oh yeah!...;(? esp. with 4-series for me...


Master's 2024 Registration

 

Has anyone else had difficulty registering for Master's? I can click on the different classes, I get a descriptive popup, but I have no way to add the class that I can see.


VS2008 debug error with 3-series

 

After selecting the splusmanagerapp.exe and pressing attach, I get the following message:

"Unable to attach to this process. Attach is not enabled for this process with this debug type."

This has worked a while ago, but not anymore.
Using VS2008 on a CP3
Anyone experienced this? And how to solve this?

?


Re: Test Submission

 

Email after submitting said 60-90 days. I received grade in about 2 weeks


Test Submission

 

Hi All,

For those that submitted their Silver, Gold, etc tests in the past, how long did it take to hear back from the evaluators with any feedback? Just curious.

Thanks


Crestron Debugger Disconnection Issues

 

Has anyone had any issues with debugger contently disconnecting all the time???


Re: Crestron CCD and Samsung BET-H Series Issue

 

Update: I was able to get it working.

I missed reading the part in that said "Don't rename the package file" so after changing the name back and changing the code in SIMPL, I was able to get connected and get the TVs to Power.

I'm using this driver from Crestron.

Hope this helps!

AB


Re: Crestron CCD and Samsung BET-H Series Issue

 

Here's a previous discussion on this. Hope it helps.

/g/crestron/topic/76459057#249856


Re: Any suggestion Swamp24x8 replacement with CrestronHome

 

Dont realy do much Home, but we use AudioControl M series amps in our Simpl systems. Not as many inputs as a Swamp but work just fine.??


Re: GE Interlogix NX-8E NX-584 Zone transition message issues - Did I really find the fix?

 

I posted the source code I wrote up on GitHub and called it "NX-8E-ComFix"



Interested in feedback, accolades, whatever!? Hope this helps


Re: GE Interlogix NX-8E NX-584 Zone transition message issues - Did I really find the fix?

 

Excellent Idea... I tried it.? The NX just wasn't having it.? It wouldn't accept a command that was immediately preceded by a filler ACK message, except on a small percentage of occasions (whether it succeeds could be timing related).? But you and I will both agree that a software-only fix without the burden of sourcing additional hardware is going to be ideal.

I am doing something different that narrows the collision window as much as possible.? I am looking for the knife's edge (specifically, the start bit) of the incoming message from the NX, literally the first RS232 start bit of the first byte of an incoming message, 1/19200 of a second long (if it's 19200 baud, as mine is set to).? I'm using an interrupt handler to sense it, and making a decision to abort based on the start bit alone, without waiting for the serial UART to receive the whole byte.? The abort is cleanly defined within the protocol (achieved simply by sending the byte 0x7e to start a new message) and the NX takes it like a champ.


Re: GE Interlogix NX-8E NX-584 Zone transition message issues - Did I really find the fix?

 

I just checked and sure enough on the projects I used the NX8 I am using the poll.

I am wondering if this issue is caused by not sending the ack, you you couldn't just add the ack to the beginning of each command sent. That way it shouldn't end in the wait state you are talking about.


Re: GE Interlogix NX-8E NX-584 Zone transition message issues - Did I really find the fix?

 

Best I can tell it is a board that other people say they try that implements this protocol as a separate board. I am also only using the NX-8E serial port for testing this, and do not use the 584.?

If your application only uses polling (no realtime zone transition notifications enabled ) or doesn¡¯t involve sending requests to the panel, you will not notice an issue.

The most prominent manifestation of this issue is in a home where the homeowner disarms the alarm and the disarm command takes several seconds to work because it is getting ignored by the panel as the panel comms freeze while trying to tell crestron about the zones the homeowner tripped when they walk in the house.

the solution of switching to ¡°polling¡± fixes it, at the expense of seconds of delays in finding out when zones trip, and cpu time on the processor to continuously ask NX about zone status. ?This solution will be for those who need the best of both worlds with this equipment?


Re: GE Interlogix NX-8E NX-584 Zone transition message issues - Did I really find the fix?

 

What is the NX-584? I ask because I have only connected directly the onboard serial port, I have not noticed the issue you are talking about.