[Emc-developers] Buildbot Hung

2022-01-10 Thread Phill C
The Builbot appears to have been hung for a while.


___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers


Re: [Emc-developers] 2.8 release update.

2020-08-14 Thread Phill C



> On 14 Aug 2020, at 5:10 pm, Chris Morley  wrote:
> 
> Using the terminal on the ISO - I can't right click and paste - anyone else 
> find this?
> 
> Chris

Yep, same here.

Cheers, Phill

___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers


Re: [Emc-developers] correct F code status message - opinions

2020-03-23 Thread Phill C



> On 23 Mar 2020, at 6:52 pm, Chris Morley  wrote:
> 
> I have been delving deeper into linuxcnc to see if I could correct the status 
> of F code.
> For those who don't know the Fcode status report in AXIS (or any gui) is 
> actually the status of the interpreter rather then the current Fcode. If you 
> have a long program that changes the fcode lat in the program you will see 
> that f code before you should.
> 
> I have code that works; it reports through status the current F code, and it 
> outputs a HAL pin of current F code.
> I'm not sure I've done it right of course.
> 
> It does this by sending a new NML message to motion each time the F code 
> changes.
> When that message gets to Motion, it updates status and the HAL pin.
> Since it's read from the interpreted list, it is in sync with the actual F 
> code.
> 
> Currently the message is called feedrate or base_feedrate which needs to be 
> changed probably to F_code.
> Then I was thinking S code should probably be updated in sync too.
> Rather then having a message per code I could call the message sync_code and 
> add other codes to it.
> 
> Opinions ? is this the wrong way to go?
> Does my code look wrong? (most of it is boiler code actually)
> 
> You can see the commits here (top 6):
> https://github.com/LinuxCNC/linuxcnc/commits/feedcode_message
> 
> Chris
> 
> 
> ___
> Emc-developers mailing list
> Emc-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-developers

Great work Chris, it is a bit above my pay grade but plasma users will 
appreciate this.

Cheers, Phill.

___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers


Re: [Emc-developers] Intel graphics and RTAI

2019-12-17 Thread Phill C
I tried to attach a screenshot but it was too large:

phill@stretch:~$ find /lib/modules/*rtai* -name "fbcon.ko"
phill@stretch:~$ locate fbcon.ko
phill@stretch:~$ locate fbcon
/usr/lib/python2.7/dist-packages/OpenGL/GLX/ARB/fbconfig_float.py
/usr/lib/python2.7/dist-packages/OpenGL/GLX/ARB/fbconfig_float.pyc
/usr/lib/python2.7/dist-packages/OpenGL/GLX/EXT/fbconfig_packed_float.py
/usr/lib/python2.7/dist-packages/OpenGL/GLX/EXT/fbconfig_packed_float.pyc
/usr/lib/python2.7/dist-packages/OpenGL/GLX/SGIX/fbconfig.py
/usr/lib/python2.7/dist-packages/OpenGL/GLX/SGIX/fbconfig.pyc
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/ARB/fbconfig_float.py
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/ARB/fbconfig_float.pyc
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/EXT/fbconfig_packed_float.py
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/EXT/fbconfig_packed_float.pyc
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/SGIX/fbconfig.py
/usr/lib/python2.7/dist-packages/OpenGL/raw/GLX/SGIX/fbconfig.pyc
/usr/src/linux-headers-4.14.148-rtai-amd64/include/linux/fbcon.h
/usr/src/linux-headers-4.9.0-8-amd64/include/config/drm/vmwgfx/fbcon.h
/usr/src/linux-headers-4.9.0-8-rt-amd64/include/config/drm/vmwgfx/fbcon.h
phill@stretch:~$ 


> On 18 Dec 2019, at 1:20 pm, Alec Ari via Emc-developers 
>  wrote:
> 
> Oops..
> $ find /lib/modules/*rtai* -name "fbcon.ko"
> Fixed.
> Alec
> 
> 
>On Tuesday, December 17, 2019, 8:14:54 PM CST, Alec Ari via Emc-developers 
>  wrote:  
> 
> Phill,
> Can you try running insmod on the fbcon driver in your RTAI kernel module 
> directory? Something like:
> $ find /lib/modules/*rtai* -name "fbcon"
> Then as root:
> # insmod .ko
> 
> Alec
> 
> ___
> Emc-developers mailing list
> Emc-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-developers
> 
> ___
> Emc-developers mailing list
> Emc-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-developers



___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers


Re: [Emc-developers] Intel graphics and RTAI

2019-12-16 Thread Phill C
I had linux-image-4.14.132-rtai-amd64 and I noticed there was a 
linux-image-4.14.148-rtai-amd64 so I uninstalled the old ones and have 
installed the linux-image, linux-headers and rtai-modules from 
linuxcnc.org/temp <http://linuxcnc.org/temp>

I get in syslog:

systemd-modules-load[173]: Failed to find module ‘fbcon’
systemd-modules-load[319]: Failed to find module ‘fbcon’



> On 17 Dec 2019, at 3:10 pm, Alec Ari via Emc-developers 
>  wrote:
> 
> Does `lsmod` show fbcon?
> 
> Alec
> 
> 
> On Monday, December 16, 2019, 9:51:15 PM CST, Phill C 
>  wrote: 
> 
>> On 17 Dec 2019, at 2:18 pm, Alec Ari via Emc-developers 
>>  wrote:
>> 
>> Phillip, you need the fbcon driver loaded. If this is too much of a hassle I 
>> can just add the DRM KMS driver back in.
>> 
>> Alec
>> 
>> 
> 
> I think I did try that, not sure.
> 
> I just tried it then and I get this in /var/log/Xorg.0.log
> 
> [  101.014] (II) "glx" will be loaded. This was enabled by default and also 
> specified in the config file.
> [  101.014] (II) LoadModule: "glx"
> [  101.014] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
> [  101.016] (II) Module glx: vendor="X.Org Foundation"
> [  101.016] compiled for 1.20.4, module version = 1.0.0
> [  101.016] ABI class: X.Org Server Extension, version 10.0
> [  101.016] (II) LoadModule: "fbcon"
> [  101.016] (WW) Warning, couldn't open module fbcon
> [  101.016] (EE) Failed to load module "fbcon" (module does not exist, 0)
> [  101.016] (EE) No drivers available.
> [  101.016] (EE) 
> Fatal server error:
> [  101.016] (EE) no screens found(EE) 
> [  101.016] (EE) 
> Please consult the The X.Org Foundation support 
> at http://wiki.x.org
> for help. 
> [  101.016] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
> additional information.
> [  101.016] (EE) 
> [  101.018] (EE) Server terminated with error (1). Closing log file.
> 
> I am probably doing something totally wrong...
> 
> ___
> Emc-developers mailing list
> Emc-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-developers
> 
> 
> ___
> Emc-developers mailing list
> Emc-developers@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-developers


___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers


Re: [Emc-developers] Intel graphics and RTAI

2019-12-16 Thread Phill C



> On 17 Dec 2019, at 2:18 pm, Alec Ari via Emc-developers 
>  wrote:
> 
> Phillip, you need the fbcon driver loaded. If this is too much of a hassle I 
> can just add the DRM KMS driver back in.
> 
> Alec
> 
> 

I think I did try that, not sure.

I just tried it then and I get this in /var/log/Xorg.0.log

[   101.014] (II) "glx" will be loaded. This was enabled by default and also 
specified in the config file.
[   101.014] (II) LoadModule: "glx"
[   101.014] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   101.016] (II) Module glx: vendor="X.Org Foundation"
[   101.016]compiled for 1.20.4, module version = 1.0.0
[   101.016]ABI class: X.Org Server Extension, version 10.0
[   101.016] (II) LoadModule: "fbcon"
[   101.016] (WW) Warning, couldn't open module fbcon
[   101.016] (EE) Failed to load module "fbcon" (module does not exist, 0)
[   101.016] (EE) No drivers available.
[   101.016] (EE) 
Fatal server error:
[   101.016] (EE) no screens found(EE) 
[   101.016] (EE) 
Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
[   101.016] (EE) Please also check the log file at "/var/log/Xorg.0.log" for 
additional information.
[   101.016] (EE) 
[   101.018] (EE) Server terminated with error (1). Closing log file.

I am probably doing something totally wrong...
___
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers